Browse Source

Show locate_user results in the log always.

root 4 years ago
parent
commit
83c1249a4e
1 changed files with 2 additions and 2 deletions
  1. 2 2
      hharry.cpp

+ 2 - 2
hharry.cpp

@@ -210,7 +210,7 @@ void scan_mystic_log(void) {
           ZF_LOGE("New User: %s", (const char *)username.c_str());
           // once we know this works -- lookup user's record
           locate_user(username.c_str());
-          ZF_LOGD("Username: [%s] A.K.A. [%s]", (const char *)username.c_str(),
+          ZF_LOGE("Username: [%s] A.K.A. [%s]", (const char *)username.c_str(),
                   (const char *)fullname.c_str());
         }
       }
@@ -224,7 +224,7 @@ void scan_mystic_log(void) {
           ZF_LOGE("User: %s", (const char *)username.c_str());
           // verify this works, lookup
           locate_user(username.c_str());
-          ZF_LOGD("Username: [%s] A.K.A. [%s]", (const char *)username.c_str(),
+          ZF_LOGE("Username: [%s] A.K.A. [%s]", (const char *)username.c_str(),
                   (const char *)fullname.c_str());
         }
       }