aboutsummaryrefslogtreecommitdiff
path: root/infra
diff options
context:
space:
mode:
authorjonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com>2021-08-06 10:34:20 -0700
committerGitHub <noreply@github.com>2021-08-06 10:34:20 -0700
commit7386a0106029e57bc4a04beb2fdcf904cdb13672 (patch)
treea816a083369e98f27faf01ff3b4a10f0c568ed4c /infra
parent779d8562a9fe53dd84c6102f28b51d287d235590 (diff)
downloadoss-fuzz-7386a0106029e57bc4a04beb2fdcf904cdb13672.tar.gz
[cifuzz][nfc] Switch log info to log error (#6178)
Diffstat (limited to 'infra')
-rw-r--r--infra/cifuzz/build_fuzzers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/infra/cifuzz/build_fuzzers.py b/infra/cifuzz/build_fuzzers.py
index 126ffe938..978b50fb6 100644
--- a/infra/cifuzz/build_fuzzers.py
+++ b/infra/cifuzz/build_fuzzers.py
@@ -209,7 +209,7 @@ def check_fuzzer_build(config):
if retcode == 0:
logging.info('Build check passed.')
return True
- logging.info('Build check failed.')
+ logging.error('Build check failed.')
return False