libutil/logging: fix build without precompiled header

Commit 0109368c3f missed to include a required
header, which is not noticed when the precompiled header is enabled because
it's included in that. Also include it in the file so that the build without
precompiled header works too.

Change-Id: Id7a7979684b64f937f7f8191612952d73c113015
This commit is contained in:
alois31 2024-07-21 12:46:56 +02:00
parent 94a8e5fe0d
commit 2d4aca2546
Signed by untrusted user: alois31
GPG key ID: E0F59EA5E5216914

View file

@ -7,6 +7,7 @@
#include <algorithm>
#include <atomic>
#include <mutex>
#include <sstream>
#include <nlohmann/json.hpp>