|
|
LoggingAs logging framework, Geomajas uses the SLF4J library. All logging should therefore be done through SLF4J. A logger is created using: private final Logger log = LoggerFactory.getLogger(ClassName.class); When inserting debug statements, parameterized messages should be used to prevent the need/usefulness of isDebugEnabled. When to use a specific logging level:
|



