diff --git a/debian/changelog b/debian/changelog index 7c406f5..c03e47a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +j7s-mosquitto-plugin (0.0.3-1) unstable; urgency=medium + + * Load multiple keys per user. + + -- James Pace Sat, 2 Apr 2022 00:14:50 +0000 + j7s-mosquitto-plugin (0.0.2-1) unstable; urgency=medium * Update to ES256. diff --git a/src/Authorizer.cpp b/src/Authorizer.cpp index b1b90e7..a6bd931 100644 --- a/src/Authorizer.cpp +++ b/src/Authorizer.cpp @@ -44,7 +44,6 @@ bool Authorizer::add(const std::string &token, const std::string &username) const bool validated = [token, username, keys]() { for (const auto key : keys) { - std::cout << "Trying..." << std::endl; if (validate(token, username, key)) { return true;