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
initialize log level early The default log level needs to be initialized before everthing else, otherwise an error during the option parsing (eg. when an unknown option is passed) will result in an unessecary stack trace.
Allow dynamic log level setting This was inspired by #32 but I am not sure this actually the way to go. Thinking a bit more about the intial post, an even better way would be to add config file reading to the Options class. Maybe from a .env file?
do not explicitly call exit(0). fixes#21 A normally exiting PHP script will exit with error code 0 by default, so we don't need to explicitly call it in run()