This method logs data to the used Logger with the LogLevel of the this Logger in a printf-style manner.
In order for the data to be processed the LogLevel of the Logger must be greater or equal to the global LogLevel.
The format string used for this log call.
The data that should be logged.
auto s = new FileLogger(stdout); s.logf("%d %s", 1337, "is number"); s.logf("%d %s", 1337, "is number"); s.logf("%d %s", 1337, "is number"); s.logf("%d %s", 1337, "is number"); s.logf("%d %s", 1337, "is number");
See Implementation
This method logs data to the used Logger with the LogLevel of the this Logger in a printf-style manner.
In order for the data to be processed the LogLevel of the Logger must be greater or equal to the global LogLevel.