You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running GPRegression model, I find that it is particularly verbose in the console. At first, I thought it was log4j configuration being too verbose. However, grepping in the code, I can see lots of println.
I suggest replacing these println with logger debug or trace level.
The text was updated successfully, but these errors were encountered:
Hi @michellemay, Yes indeed they are mostly pprint.pprintln() statements from ammonite which I inserted. I wanted colour coding of the console logs but it was not possible in log4j.
I guess one way to deal with this is to set some config variable which will avoid executing the println() statements.
Or unless you know of a way to get colour coded console logs?
When running GPRegression model, I find that it is particularly verbose in the console. At first, I thought it was log4j configuration being too verbose. However, grepping in the code, I can see lots of
println
.I suggest replacing these println with logger debug or trace level.
The text was updated successfully, but these errors were encountered: