-
Notifications
You must be signed in to change notification settings - Fork 120
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Would like to have logger.emtpy_line; and logger.empty_line(3) #183
Comments
I'd do something like |
@JuergenSchuster I'll need a good reason and many up votes to add such a command to the API when you can do For now I'll tag it as a future. |
@martindsouza It's not a big deal. I think we agree to have blank lines to structure your logging outputs. logger.log(null) is not an option, people need to think about it, what this actually does (remember there are normal people programming PL/SQL too :-) logger.log(' '); Everybody understands immediately, but it is not nice. logger.empty_lines(3); would be fantastic to read :-) |
@JuergenSchuster If we du have an |
@martindsouza Debug level only |
@JuergenSchuster I fail to see why one would like to log "nothing". Is the purpose to record a wall clock time of the program execution ? But the logger have dedicated timing methods. |
Or is it to add breaks in the log for reporting/printing? In which case I'd do However, I think the whole purpose of a debug log is to log something. |
Enhancement. Now I have to do logger.log(' '); not so nice to read
The text was updated successfully, but these errors were encountered: