summaryrefslogtreecommitdiffstats
path: root/src/util
diff options
context:
space:
mode:
Diffstat (limited to 'src/util')
-rw-r--r--src/util/debug.c2
-rw-r--r--src/util/util.h1
2 files changed, 2 insertions, 1 deletions
diff --git a/src/util/debug.c b/src/util/debug.c
index bf83624c9..69df54386 100644
--- a/src/util/debug.c
+++ b/src/util/debug.c
@@ -114,7 +114,7 @@ int debug_convert_old_level(int old_level)
new_level |= SSSDBG_TRACE_INTERNAL;
if (old_level >= 9)
- new_level |= SSSDBG_TRACE_ALL;
+ new_level |= SSSDBG_TRACE_ALL | SSSDBG_BE_FO;
return new_level;
}
diff --git a/src/util/util.h b/src/util/util.h
index 94a3ddea8..426fd8b86 100644
--- a/src/util/util.h
+++ b/src/util/util.h
@@ -92,6 +92,7 @@ int get_fd_from_debug_file(void);
#define SSSDBG_TRACE_LIBS 0x1000 /* level 7 */
#define SSSDBG_TRACE_INTERNAL 0x2000 /* level 8 */
#define SSSDBG_TRACE_ALL 0x4000 /* level 9 */
+#define SSSDBG_BE_FO 0x8000 /* level 9 */
#define SSSDBG_IMPORTANT_INFO SSSDBG_OP_FAILURE
#define SSSDBG_INVALID -1