You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the code in core/log.go writes log messages to stdout, which is where the tool also writes the output of queries.
when redirecting the data to a file or parsing it, it will be corrupted.
i would sugest to fix this by: s/fmt.Printf(/fmt.Fprintf(os.Stderr, /
The text was updated successfully, but these errors were encountered:
the code in
core/log.go
writes log messages to stdout, which is where the tool also writes the output of queries.when redirecting the data to a file or parsing it, it will be corrupted.
i would sugest to fix this by:
s/fmt.Printf(/fmt.Fprintf(os.Stderr, /
The text was updated successfully, but these errors were encountered: