Valid log levels are: 'trace', 'debug', 'info', 'warn', 'error', 'silent'.
If an invalid level is provided, the level will default to 'error' and an error will be logged.
Example
import { setLogLevel } from'./AcCmLogUtil'
// Set to debug level for development setLogLevel('debug')
// Set to error level for production setLogLevel('error')
Sets the log level for the logging system.
Valid log levels are: 'trace', 'debug', 'info', 'warn', 'error', 'silent'. If an invalid level is provided, the level will default to 'error' and an error will be logged.
Example