-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
Logging timestamps should be optional #6163
Comments
Check this: https://newreleases.io/project/github/lightningnetwork/lnd/release/v0.13.0-beta.rc3. Your Logging timestamps is useful for your peer. He should know when was your last log. |
@redek-zelton, how is the link relevant to this issue? |
ah sorry my bad, it's a suggestion. |
Can I work on this? @Roasbeef |
Note to implementers:
|
Unfortunately the command line flag parsing library we use cannot have boolean values with default value |
@guggero looks like the convention is to use the |
Note that when #9083 is in, then this should be quite easy to do by passing options to the Handlers we define there :) (ie, no need to pass options to the btclog package anymore) |
Ok, #9083 has now been updated to address this issue. With that PR, you will now be able to do: |
lnd always prints timestamps in log messages.
This is redundant in systemd services (where log messages are automatically timestamped) and should be made optional.
This SO post shows how this can be achieved
The text was updated successfully, but these errors were encountered: