Skip to content

Commit c7e4310

Browse files
committed
fix: decrease log level
1 parent 409812f commit c7e4310

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

  • mkdocs_rss_plugin/git_manager

mkdocs_rss_plugin/git_manager/ci.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def raise_ci_warnings(self):
3939
# Gitlab Runners
4040
if environ.get("GITLAB_CI") and n_commits < 50:
4141
# Default is GIT_DEPTH of 50 for gitlab
42-
logger.warning(
42+
logger.info(
4343
"""
4444
Running on a gitlab runner might lead to wrong \
4545
git revision dates due to a shallow git fetch depth. \
@@ -51,7 +51,7 @@ def raise_ci_warnings(self):
5151
# Github Actions
5252
if environ.get("GITHUB_ACTIONS") and n_commits == 1:
5353
# Default is fetch-depth of 1 for github actions
54-
logger.warning(
54+
logger.info(
5555
"""
5656
Running on github actions might lead to wrong \
5757
git revision dates due to a shallow git fetch depth. \
@@ -63,7 +63,7 @@ def raise_ci_warnings(self):
6363
# Bitbucket pipelines
6464
if environ.get("CI") and n_commits < 50:
6565
# Default is fetch-depth of 50 for bitbucket pipelines
66-
logger.warning(
66+
logger.info(
6767
"""
6868
Running on bitbucket pipelines might lead to wrong \
6969
git revision dates due to a shallow git fetch depth. \
@@ -76,7 +76,7 @@ def raise_ci_warnings(self):
7676
# Azure Devops Pipeline
7777
# Does not limit fetch-depth by default
7878
if environ.get("Agent.Source.Git.ShallowFetchDepth", 10e99) < n_commits:
79-
logger.warning(
79+
logger.info(
8080
"""
8181
Running on Azure pipelines \
8282
with limited fetch-depth might lead to wrong git revision dates \

0 commit comments

Comments
 (0)