-
-
Notifications
You must be signed in to change notification settings - Fork 739
Open
Description
1499874170 reported this on 2023-04-15T15:55:55Z
Transfered from https://issues.dlang.org/show_bug.cgi?id=23840
Description
For std/logger/package.d
The comments tell me:
The easiest way to create a log message is to write:
-------------
import std.logger;
void main() {
log("Hello World");
}
-------------
But I created a test project:
(test.d)
import std.logger;
void main(string[] args)
{
log("test");
}
It is not any output.
But if I change it:
(test.d)
import std.logger;
void main(string[] args)
{
log(LogLevel.info, "test");
}
It is working.