Is there a built-in Go logger that can roll a log file when it reaches a file size limit?
Thanks.
|
Is there a built-in Go logger that can roll a log file when it reaches a file size limit? Thanks. |
|||
|
|
|
No, there is no built-in in logger that currently has this feature. see also this question |
||||
|
|
Above the syslog package, which probably is not what you really want, no such thing is in the standard library. From the 3rd party packages, for example log4go claims to have this feature. |
|||
|
|