-
Notifications
You must be signed in to change notification settings - Fork 912
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Option similar to bitcoind's -logtimestamps=0 #4494
Comments
rustyrussell
added a commit
to rustyrussell/lightning
that referenced
this issue
May 3, 2021
Fixes: ElementsProject#4494 Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
rustyrussell
added a commit
to rustyrussell/lightning
that referenced
this issue
May 3, 2021
Fixes: ElementsProject#4494 Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Changelog-Added: config: New option `log-timestamps` allow disabling of timestamp prefix in logs.
rustyrussell
added a commit
to rustyrussell/lightning
that referenced
this issue
May 4, 2021
Fixes: ElementsProject#4494 Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Changelog-Added: config: New option `log-timestamps` allow disabling of timestamp prefix in logs.
rustyrussell
added a commit
to rustyrussell/lightning
that referenced
this issue
May 5, 2021
Fixes: ElementsProject#4494 Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Changelog-Added: config: New option `log-timestamps` allow disabling of timestamp prefix in logs.
rustyrussell
added a commit
to rustyrussell/lightning
that referenced
this issue
May 5, 2021
Fixes: ElementsProject#4494 Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Changelog-Added: config: New option `log-timestamps` allow disabling of timestamp prefix in logs.
niftynei
pushed a commit
that referenced
this issue
May 5, 2021
Fixes: #4494 Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Changelog-Added: config: New option `log-timestamps` allow disabling of timestamp prefix in logs.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Issue and Steps to Reproduce
I use
runsvdir
for process supervision and for logging I am very happy withsvlogd
(and djb'stai64nlocal
fromdaemontools
) so I do not expect the process to write timestamps on output.bitcoind
has an option-logtimestamps
which lets me turn off the timestamps in the log. What can I do withlightningd
? Currently this is the double-timestamping I get:Of course I could instruct
svlogd
to not add timestamps on its side. I just think that it makes sense to follow the example ofbitcoind
and have an option to disable timestamps in the output. Thanks.The text was updated successfully, but these errors were encountered: