-
-
Notifications
You must be signed in to change notification settings - Fork 507
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
chore: enable implicit default logger only in testing with -v #2877
base: main
Are you sure you want to change the base?
Conversation
✅ Deploy Preview for testcontainers-go ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
@apstndb thanks for opening the issue and working on the fix. I have one question about your use case: What do you expect when From what I can see with the implementation in this PR, for the use case above of executing Could you share more on your use case so we can understand better the needs behind it? 🙏 |
My expectation is that
It means the current behavior of enforcing In this case, users can implement their own handling by explicitly setting |
@apstndb so IIUC, you are using testcontainers-go outside a test suite as, my guess, the runtime of a software that spins up containers, right? Then I think you're right and we should consider this, but want to double check with you about your use case. |
Yes! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thanks!
@apstndb one final question: in your case, using tc-go as part of another library, how would you get testcontainers logs? IIUC this code, it will enable the verbose mode only when testing is enabled, which is not your case, right? |
It is right, my case don't show tc-go logs currently.
I think we can pass some options to the wrapper library like |
What does this PR do?
This PR changes
-v
and-test.v=true
handling only takes effect iftesting.Testing() = true
, i.e.go test
.Why is it important?
The current implementation always treats
-v
and-test.v=true
specially, even outside ofgo test
, and outputs verbose logs that are not easy to suppress. This makes it difficult to use testcontainers outside ofgo test
.Related issues
How to test this PR
These behaviors should not be changed.
These behavior will be changed to suppress default logging.