pushmsg: Remove debug statement.

This commit is contained in:
tastytea 2021-09-13 12:38:09 +02:00
parent 54192f7804
commit 196652762f
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 2 additions and 2 deletions

View File

@ -87,9 +87,9 @@ int main(int argc, char *argv[])
const nlohmann::json json{{"title", message.title},
{"message", message.body},
{"priority", message.priority}};
std::cout << json.dump() << '\n';
auto response{
const auto response{
conn.post("/message?token=" + message.token, json.dump())};
switch (response.code)
{
case 200: