Small update to async bench

This commit is contained in:
gabime 2018-10-30 01:08:32 +02:00
parent 1b04c222cf
commit 80f19324bc

View File

@ -94,6 +94,7 @@ int main(int argc, char *argv[])
spdlog::info("Line count OK ({:n})\n", count); spdlog::info("Line count OK ({:n})\n", count);
} }
} }
spdlog::shutdown();
} }
catch (std::exception &ex) catch (std::exception &ex)
{ {
@ -101,6 +102,7 @@ int main(int argc, char *argv[])
perror("Last error"); perror("Last error");
return 1; return 1;
} }
return 0; return 0;
} }