Skip to content

Commit

Permalink
add extra space for readability
Browse files Browse the repository at this point in the history
  • Loading branch information
liqiqiii committed Jul 19, 2024
1 parent 4f741ef commit 3be649e
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions AdvLoggerPkg/Application/DecodeUefiLog/DecodeUefiLog.py
Original file line number Diff line number Diff line change
Expand Up @@ -293,27 +293,27 @@ class AdvLogParser ():
# #define DEBUG_ERROR 0x80000000 // Error

debug_levels_dict = {
0x00000001: "[DEBUG_INIT]",
0x00000002: "[DEBUG_WARN]",
0x00000004: "[DEBUG_LOAD]",
0x00000008: "[DEBUG_FS]",
0x00000010: "[DEBUG_POOL]",
0x00000020: "[DEBUG_PAGE]",
0x00000040: "[DEBUG_INFO]",
0x00000080: "[DEBUG_DISPATCH]",
0x00000100: "[DEBUG_VARIABLE]",
0x00000200: "[DEBUG_SMI]",
0x00000400: "[DEBUG_BM]",
0x00001000: "[DEBUG_BLKIO]",
0x00004000: "[DEBUG_NET]",
0x00010000: "[DEBUG_UNDI]",
0x00020000: "[DEBUG_LOADFILE]",
0x00080000: "[DEBUG_EVENT]",
0x00100000: "[DEBUG_GCD]",
0x00200000: "[DEBUG_CACHE]",
0x00400000: "[DEBUG_VERBOSE]",
0x00800000: "[DEBUG_MANAGEABILITY]",
0x80000000: "[DEBUG_ERROR]"
0x00000001: "[DEBUG_INIT] ",
0x00000002: "[DEBUG_WARN] ",
0x00000004: "[DEBUG_LOAD] ",
0x00000008: "[DEBUG_FS] ",
0x00000010: "[DEBUG_POOL] ",
0x00000020: "[DEBUG_PAGE] ",
0x00000040: "[DEBUG_INFO] ",
0x00000080: "[DEBUG_DISPATCH] ",
0x00000100: "[DEBUG_VARIABLE] ",
0x00000200: "[DEBUG_SMI] ",
0x00000400: "[DEBUG_BM] ",
0x00001000: "[DEBUG_BLKIO] ",
0x00004000: "[DEBUG_NET] ",
0x00010000: "[DEBUG_UNDI] ",
0x00020000: "[DEBUG_LOADFILE] ",
0x00080000: "[DEBUG_EVENT] ",
0x00100000: "[DEBUG_GCD] ",
0x00200000: "[DEBUG_CACHE] ",
0x00400000: "[DEBUG_VERBOSE] ",
0x00800000: "[DEBUG_MANAGEABILITY] ",
0x80000000: "[DEBUG_ERROR] "
}

#
Expand Down

0 comments on commit 3be649e

Please sign in to comment.