rm debug info

This commit is contained in:
Simplxs 2024-06-20 23:58:48 +08:00 committed by GitHub
parent 72110c1726
commit 0328134d86
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -94,9 +94,9 @@ void Server::Init(int port) {
res.set_content(buffer.GetString(), "application/json"); res.set_content(buffer.GetString(), "application/json");
}); });
bool ret = svr.listen("0.0.0.0", port); // crach here bool ret = svr.listen("0.0.0.0", port);
} }
catch(std::exception &e) { catch(std::exception &e) {
printf("Server init failed: %s\n", e.what()); printf("Server init failed: %s\n", e.what());
} }
} }