Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion socketsecurity/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__author__ = 'socket.dev'
__version__ = '2.0.38'
__version__ = '2.0.39'

2 changes: 2 additions & 0 deletions socketsecurity/core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -427,6 +427,8 @@ def get_repo_info(self, repo_slug: str, default_branch: str = "socket-default-br
Exception: If API request fails
"""
try:
# Need to switch to either standard logger or not call our module logging so that there isn't a conflict
# Also need to update the SDK to not emit log in a way that can't be trapped by try/except
sdk_logger = logging_std.getLogger("socketdev")
original_level = sdk_logger.level
sdk_logger.setLevel(logging_std.CRITICAL)
Expand Down
Loading