We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Maybe a possible logging framework issue?
https://github.com/0xPolygonHermez/cdk-erigon/blob/zkevm/turbo/logging/logging.go uses
import "github.com/ledgerwatch/log/v3" see source
import "github.com/ledgerwatch/log/v3"
func (l *logger) write(msg string, lvl Lvl, ctx []interface{}) { l.h.Log(&Record{ Time: time.Now(), Lvl: lvl, Msg: msg, Ctx: newContext(l.ctx, ctx), Call: stack.Caller(2), KeyNames: RecordKeyNames{ Time: timeKey, Msg: msgKey, Lvl: lvlKey, }, }) }
Seems it is cpu intensive to synchronously create records with Caller information?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Maybe a possible logging framework issue?
https://github.com/0xPolygonHermez/cdk-erigon/blob/zkevm/turbo/logging/logging.go uses
import "github.com/ledgerwatch/log/v3"
see sourceSeems it is cpu intensive to synchronously create records with Caller information?
The text was updated successfully, but these errors were encountered: