Posts: 726
Threads: 208
Joined: Sep 2017
Reputation:
0
04-29-2020, 04:02 PM
(This post was last modified: 04-29-2020, 04:03 PM by richb201.)
I am using Docker and they recommend to send logging output to STDOUT or the console so that the "docker container logs" command can be used. Is there some easy way to redirect the logging output?
proof that an old dog can learn new tricks
Posts: 726
Threads: 208
Joined: Sep 2017
Reputation:
0
I thought this would be an easy question. I guess not.
proof that an old dog can learn new tricks
Posts: 5
Threads: 3
Joined: Jul 2020
Reputation:
0
i have done that like this.
I wrote a hanlder base upon the filehandler then i change the config to add this handler
1) first the handler
i copied the system/log/filehandler.php to system/log/stderrhandler.php
I removed everything concerning the file.
i added "echo $msg" inside the function handle.
2) the config
inside the app/Config/Logger.php i added my new handler
Codeingiter\Log\Handlers\stderrhandler =>[handles ...] (just copy it from the chromehandler