add nfc log tag

This commit is contained in:
Conor Patrick 2019-01-07 18:29:38 -05:00
parent eda26e3c93
commit c330346c31
2 changed files with 13 additions and 11 deletions

View File

@ -61,7 +61,8 @@ struct logtag tagtable[] = {
{TAG_WALLET,"WALLET"},
{TAG_STOR,"STOR"},
{TAG_BOOT,"BOOT"},
{TAG_BOOT,"EXT"},
{TAG_EXT,"EXT"},
{TAG_NFC,"NFC"},
};

View File

@ -57,6 +57,7 @@ typedef enum
TAG_DUMP2 = (1 << 16),
TAG_BOOT = (1 << 17),
TAG_EXT = (1 << 17),
TAG_NFC = (1 << 18),
TAG_FILENO = (1<<31)
} LOG_TAG;