We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef9d106 commit c7d5ddfCopy full SHA for c7d5ddf
utilities/using-loggers/index.md
@@ -84,7 +84,7 @@ logger := TFileLogger.create('storages/logs/app.log');
84
85
### Logging to STDOUT
86
87
-`TStdOutLogger` is logger implementation that will output log message to STDOUT.
+`TStdOutLogger` is logger implementation that will output log message to STDOUT. This logger can not be used in CGI application.
88
89
### Logging to STDERR
90
@@ -275,6 +275,14 @@ To register `TNullLogger`,
275
container.add('logger', TNullLoggerFactory.create());
276
```
277
278
+### Register TStdOutLogger
279
+
280
+To register `TStdOutLogger`,
281
282
+```
283
+container.add('logger', TStdOutLoggerFactory.create());
284
285
286
### Register TStdErrLogger
287
288
To register `TStdErrLogger`,
0 commit comments