All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sktutilities.util.Log Maven / Gradle / Ivy

Go to download

A collection of scala and java classes for some basic character level processing for the Sanskrit and other Indic (kannada, telugu, etc..) languages, contributed by the open source sanskrit-coders projects and friends. Some notable facilities: * Transliterate text from one script or encoding scheme to another. * Some grammar simulation. Examples: see https://github.com/sanskrit-coders/indic-transliteration Contributions and suggestions are invited at https://github.com/sanskrit-coders/indic-transliteration . (Sister projects there may also be of interest.)

The newest version!
package com.sktutilities.util;

//import org.apache.log4j.Logger;
/**
 * Logger - Logging component to log all the messages.
 * The Correct Version of Log.java for logging.CP
 */
public class Log {
    
    //private static Logger instance = Logger.getLogger("Log");;
    
    public static void logInfo(String info) {
        //instance.info(info);
        System.out.println(info);
    }
    public static void logInfo(Object info) {
        // instance.info(info);
        // System.out.println(info);
     }
    public static void logInfo(int info) {
        // instance.info(info);
       //  System.out.println(info);
     }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy