Re: Logging with slf4j

2016-05-26 Thread Stephan Ewen
Hi! If the loggers are configured to log to files, all your output will show up in the ".log" files in the "log" directory. If the loggers are configured to log to console, all your output will show up in the ".out" files in the "log" directory. There is no functionality built in to take log

Re: Logging with slf4j

2016-05-26 Thread simon peyer
Hi I'm using log4j, running localy in cluster mode, with sh start_cluster.shNo warnings in the command line.Please find attached the Logging Files.Where are I'm supposed to find the logging information?In the log directory right?Cheers Simon log4j-cli.properties Description: Binary data

Re: Logging with slf4j

2016-05-25 Thread Stefano Baghino
It looks like the logs should show up. Are you using log4j or logback? Did you include the binding to slf4j for the library you're using? Did any warning on slf4j appear on stdout when the job is run? If you set up all correctly, can you share your logback/log4j config file with us so that we can

Logging with slf4j

2016-05-25 Thread simon peyer
Hi guys Trying to log stuff, I used the print/println function which works quite well. But now I would like to use the slf4j logger. For each class/object in scala I intiliaized a logger like this: var log: Logger = LoggerFactory.getLogger(getClass) then I did some logging