mlog: fix setting no logs
This commit is contained in:
parent
8fdf645397
commit
18c2f6e21d
|
@ -202,7 +202,12 @@ void mlog_set_log(const char *log)
|
|||
long level;
|
||||
char *ptr = NULL;
|
||||
|
||||
level = strtoll(log, &ptr, 10);
|
||||
if (!*log)
|
||||
{
|
||||
mlog_set_categories(log);
|
||||
return;
|
||||
}
|
||||
level = strtol(log, &ptr, 10);
|
||||
if (ptr && *ptr)
|
||||
{
|
||||
// we can have a default level, eg, 2,foo:ERROR
|
||||
|
|
Loading…
Reference in New Issue