Browse Source

TT#14008 fix debug logging bug

Change-Id: Iedc442fef5ad153be52d6ba8fdd106294f9367da
(cherry picked from commit 61a852fa71)
pull/1285/head
Richard Fuchs 5 years ago
parent
commit
c01dc771e7
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      lib/loglib.h

+ 1
- 1
lib/loglib.h View File

@ -56,7 +56,7 @@ extern const char * const log_level_descriptions[];
__ilog(prio, "[%s] " fmt, log_level_names[system], ##__VA_ARGS__); \ __ilog(prio, "[%s] " fmt, log_level_names[system], ##__VA_ARGS__); \
} while (0) } while (0)
#else #else
#define ilogsn(prio, system, fmt, ...) __ilog(prio, "[%s] " fmt, log_level_names[system], ##__VA_ARGS__)
#define ilogsn(system, prio, fmt, ...) __ilog(prio, "[%s] " fmt, log_level_names[system], ##__VA_ARGS__)
#endif #endif


Loading…
Cancel
Save