Skip to content

Commit 2f2dfa9

Browse files
authored
Merge pull request #211 from FlorianVeaux/master
Do not log a warning if colorama is not installed
2 parents 913beac + e392647 commit 2f2dfa9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

securesystemslib/interface.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
TERM_RED = Fore.RED
5757
TERM_RESET = Fore.RESET
5858
except ImportError:
59-
logger.warning("Failed to find colorama module, terminal output won't be colored")
59+
logger.debug("Failed to find colorama module, terminal output won't be colored")
6060
TERM_RED = ''
6161
TERM_RESET = ''
6262

0 commit comments

Comments
 (0)