--- old/src/hotspot/share/gc/z/zNUMA.cpp 2020-06-03 10:15:58.000000000 +0200 +++ new/src/hotspot/share/gc/z/zNUMA.cpp 2020-06-03 10:15:57.000000000 +0200 @@ -22,17 +22,17 @@ */ #include "precompiled.hpp" +#include "gc/shared/gcLogPrecious.hpp" #include "gc/z/zNUMA.hpp" -#include "logging/log.hpp" bool ZNUMA::_enabled; void ZNUMA::initialize() { initialize_platform(); - log_info(gc, init)("NUMA Support: %s", to_string()); + log_info_p(gc, init)("NUMA Support: %s", to_string()); if (_enabled) { - log_info(gc, init)("NUMA Nodes: %u", count()); + log_info_p(gc, init)("NUMA Nodes: %u", count()); } }