diff --git a/src/main.cpp b/src/main.cpp index 0145704..8664b8f 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -245,5 +245,8 @@ int main() // Only use a single thread to handle requests // The discovery endpoint is not thread-safe - app.port(SERVICE_PORT).run(); + app + .loglevel(crow::LogLevel::Warning) + .port(SERVICE_PORT) + .run(); }