com.dooapp.gaedo.blueprints.QueryLog Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gaedo-blueprints Show documentation
Show all versions of gaedo-blueprints Show documentation
Implementation of gaedo mechanisms backed by blueprints graph layer
package com.dooapp.gaedo.blueprints;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
* A small class centralizing all logs for queries run on graph.
* Want these logs to be displayed ? Set log level for "com.dooapp.gaedo.blueprints.QueryLog" to FINE/FINER/FINEST/ALL
* @author ndx
*
*/
public class QueryLog {
public static final Level QUERY_LOGGING_LEVEL = Level.FINE;
public static final Logger logger = Logger.getLogger(QueryLog.class.getName());
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy