Skip to content

Commit

Permalink
Use the same logger everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
EnricoMi committed Jun 14, 2022
1 parent 2cac445 commit 07bd34a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/publish/retry.py
Expand Up @@ -11,7 +11,7 @@

from publish.github_action import GithubAction

logger = logging.getLogger('publish-unit-test-results')
logger = logging.getLogger('publish')


class GitHubRetry(Retry):
Expand Down
2 changes: 1 addition & 1 deletion python/publish_unit_test_results.py
Expand Up @@ -24,7 +24,7 @@
from publish.retry import GitHubRetry
from publish.unittestresults import get_test_results, get_stats, ParsedUnitTestResults

logger = logging.getLogger('publish-unit-test-results')
logger = logging.getLogger('publish')


def get_conclusion(parsed: ParsedUnitTestResults, fail_on_failures, fail_on_errors) -> str:
Expand Down

0 comments on commit 07bd34a

Please sign in to comment.