From 04286865816ee39c672e8ac6a278b76c344dbfd7 Mon Sep 17 00:00:00 2001 From: Alex Groce Date: Sat, 28 Jul 2018 18:04:19 -0700 Subject: [PATCH] let python know about new logging level --- bin/deepstate/common.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/deepstate/common.py b/bin/deepstate/common.py index 0de6ffc..8e479da 100644 --- a/bin/deepstate/common.py +++ b/bin/deepstate/common.py @@ -35,7 +35,8 @@ LOG_LEVEL_DEBUG = 0 LOG_LEVEL_INFO = 1 LOG_LEVEL_WARNING = 2 LOG_LEVEL_ERROR = 3 -LOG_LEVEL_FATAL = 4 +LOG_LEVEL_FUZZER = 4 +LOG_LEVEL_FATAL = 5 LOGGER = logging.getLogger("deepstate")