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
Im doing a project that uses zerologging library for its logging support
currently im logging to console, but i was hoping to split the output stream into debugging/infos to stdOut and warns/errors to stdErr.
would it be better to create two separate logging objects, one outputting to stdOut and the other outputting to stdErr?
or should i just set the Output value of the logger each time there is a switch in the logging level (debug/info -> warn/error and vice versa) which would be happen a lot of times in the project
The text was updated successfully, but these errors were encountered:
Im doing a project that uses zerologging library for its logging support
currently im logging to console, but i was hoping to split the output stream into debugging/infos to stdOut and warns/errors to stdErr.
would it be better to create two separate logging objects, one outputting to stdOut and the other outputting to stdErr?
or should i just set the Output value of the logger each time there is a switch in the logging level (debug/info -> warn/error and vice versa) which would be happen a lot of times in the project
The text was updated successfully, but these errors were encountered: