-
Notifications
You must be signed in to change notification settings - Fork 77
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
Fix logger setup #4657
Merged
Merged
Fix logger setup #4657
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
045e08d
test logger setup fix
barryyosi-panw 2478a4b
test logger
barryyosi-panw b099c45
test logger
barryyosi-panw 22888c1
test logger
barryyosi-panw 0fcac1d
test sdk logger
barryyosi-panw c96dfd2
test logger fix
barryyosi-panw 0dfb516
test logger
barryyosi-panw 0142740
test logger
barryyosi-panw 6fe8ab4
test-logger
barryyosi-panw d7fad7e
test logger propagation
barryyosi-panw 120d1c8
test logger
barryyosi-panw d75b11d
test logger
barryyosi-panw e24fb78
propagate logger
barryyosi-panw 20095a6
Merge branch 'master' into fix-logger-setup
barryyosi-panw 11c8f6a
merge master
barryyosi-panw cb05eb6
changelog
barryyosi-panw af44522
pre-commit fixes
barryyosi-panw a55cdb3
Update .changelog/4657.yml
barryyosi-panw 5756bd0
update possible executing module names
barryyosi-panw 9a4b897
pre commit fix
barryyosi-panw 8988e3a
constant introduction
barryyosi-panw File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
changes: | ||
- description: Fixing logger crashes when imported as library. | ||
type: fix | ||
pr_number: 4657 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
from demisto_sdk.commands.common.logger import logging_setup | ||
if __name__ in ["__main__", "demisto_sdk"]: | ||
from demisto_sdk.commands.common.logger import logging_setup | ||
|
||
logging_setup(initial=True, calling_function="__init__") | ||
logging_setup(initial=True, calling_function="__init__") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
you sure passing None vs nothing still achieves what we wanted?
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.
Default value is None then yes, and it is less confusing that way imo. https://loguru.readthedocs.io/en/stable/api/logger.html#loguru._logger.Logger.remove