Created 03-03-2017 08:31 AM
Hello,
I just want to know how to turn on logging for debug mode in storm-core. I tried updating cluster.xml and worker.xml files and set them to ALL level even then there are no logs for statements like -
LOG.info("Checkpoint interval is {} millis", interval);
also I have done - conf.setDebug(true);
Created 03-09-2017 05:07 PM
topology.debug and setting log level to DEBUG are different. First one is logging debug information from Storm itself, and second one is logging DEBUG or lower levels. If it doesn't be logged, there might not about log level or so. (for example, just not reached there...)
Created 03-09-2017 05:07 PM
topology.debug and setting log level to DEBUG are different. First one is logging debug information from Storm itself, and second one is logging DEBUG or lower levels. If it doesn't be logged, there might not about log level or so. (for example, just not reached there...)