Skip to content

Commit

Permalink
Add libs to ignore in stacktrace
Browse files Browse the repository at this point in the history
Signed-off-by: Dramelac <[email protected]>
  • Loading branch information
Dramelac committed Sep 9, 2024
1 parent 0f00d07 commit d63dceb
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions exegol/manager/ExegolController.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import http
import logging

try:
import docker
import requests
import git
import requests
import urllib3

from exegol.utils.ExeLog import logger, ExeLog, console
from exegol.utils.DockerUtils import DockerUtils
Expand Down Expand Up @@ -83,5 +85,5 @@ def main():
logger.critical(f"A critical error occurred while running this git command: {' '.join(git_error.command)}")
except Exception:
print_exception_banner()
console.print_exception(show_locals=True, suppress=[docker, requests, git])
console.print_exception(show_locals=True, suppress=[docker, requests, git, urllib3, http])
exit(1)

0 comments on commit d63dceb

Please sign in to comment.