This function logs data to the used Logger with the LogLevel of the used Logger.
In order for the resulting log message to be logged the LogLevel of the used Logger must be greater or equal than the global LogLevel.
The data that should be logged.
auto s = new FileLogger(stdout); s.log(1337, "is number"); s.log(info, 1337, "is number"); s.log(1337, "is number"); s.log(1337, "is number"); s.log(1337, "is number");
See Implementation
This function logs data to the used Logger with the LogLevel of the used Logger.
In order for the resulting log message to be logged the LogLevel of the used Logger must be greater or equal than the global LogLevel.