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
I'm not sure what I am doing wrong, but I'm trying to log SQL statements to stderr so I can see them during testing. However, nothing seems to work.
This is what I have:
pg = EmbeddedPostgres .builder() .setServerConfig( "log-connections", "true" ) .setServerConfig( "log-statement", "all" ) .setServerConfig( "log_min_duration_statement", "0" ) .setServerConfig( "log_destination", "stderr" ) .setServerConfig( "logging_collector", "on" ) .start()
The text was updated successfully, but these errors were encountered:
Duplicate of #78 ? Which has a PR, but we've not had time to test it. If you get a chance to run it and try, please let us know.
If I've misidentified as dupe, please reopen!
Sorry, something went wrong.
This does seem like a duplicate of #78
I tested PR #83 and it does print more at the initdb time, however any sql statements executed during testing still do not log.
No branches or pull requests
I'm not sure what I am doing wrong, but I'm trying to log SQL statements to stderr so I can see them during testing. However, nothing seems to work.
This is what I have:
The text was updated successfully, but these errors were encountered: