From 8873c70e8a76a371f16c67ae92db70804081f339 Mon Sep 17 00:00:00 2001 From: stephb9959 Date: Thu, 2 Sep 2021 18:15:05 -0700 Subject: [PATCH] Refactoring namespace for OpenWifi. --- src/AuthService.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AuthService.cpp b/src/AuthService.cpp index 2a5f232..0210d6b 100644 --- a/src/AuthService.cpp +++ b/src/AuthService.cpp @@ -336,7 +336,7 @@ namespace OpenWifi { std::lock_guard G(Mutex_); auto It = UserCache_.find(Token); - std::cout << "Validating token" << std::endl; + std::cout << "Validating token: " << Token << std::endl; if(It==UserCache_.end()) return false;