Skip to content

Commit c7d5ddf

Browse files
committed
add documentation on stdout logger
1 parent ef9d106 commit c7d5ddf

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

utilities/using-loggers/index.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ logger := TFileLogger.create('storages/logs/app.log');
8484

8585
### Logging to STDOUT
8686

87-
`TStdOutLogger` is logger implementation that will output log message to STDOUT.
87+
`TStdOutLogger` is logger implementation that will output log message to STDOUT. This logger can not be used in CGI application.
8888

8989
### Logging to STDERR
9090

@@ -275,6 +275,14 @@ To register `TNullLogger`,
275275
container.add('logger', TNullLoggerFactory.create());
276276
```
277277

278+
### Register TStdOutLogger
279+
280+
To register `TStdOutLogger`,
281+
282+
```
283+
container.add('logger', TStdOutLoggerFactory.create());
284+
```
285+
278286
### Register TStdErrLogger
279287

280288
To register `TStdErrLogger`,

0 commit comments

Comments
 (0)