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
There are no log files within a container environment and everything is directed to either stdin or stdout. This can be achieved via --verbose.
The --verbose flag generates too many irrelevant logs specifically problematic if an external log provider (e.g. Sumologic, loggly) is used. This leads to increased cost for no apparent reason.
A log level should be implemented to reduce the logs to a minimum, e.g. debug, info, warning, error, etc.
Message processing details such as p.log.Info("Processing message...") should be moved to debug level.
The text was updated successfully, but these errors were encountered:
There are no log files within a container environment and everything is directed to either stdin or stdout. This can be achieved via
--verbose
.The
--verbose
flag generates too many irrelevant logs specifically problematic if an external log provider (e.g. Sumologic, loggly) is used. This leads to increased cost for no apparent reason.A log level should be implemented to reduce the logs to a minimum, e.g. debug, info, warning, error, etc.
Message processing details such as
p.log.Info("Processing message...")
should be moved todebug
level.The text was updated successfully, but these errors were encountered: