--- old/src/share/vm/classfile/sharedPathsMiscInfo.cpp 2017-06-18 08:17:19.523127200 +0200 +++ new/src/share/vm/classfile/sharedPathsMiscInfo.cpp 2017-06-18 08:17:18.816841200 +0200 @@ -27,6 +27,7 @@ #include "classfile/classLoaderData.inline.hpp" #include "classfile/sharedPathsMiscInfo.hpp" #include "logging/log.hpp" +#include "logging/logStream.hpp" #include "memory/allocation.inline.hpp" #include "memory/metaspaceShared.hpp" #include "memory/resourceArea.hpp" @@ -75,7 +76,8 @@ void SharedPathsMiscInfo::print_path(int type, const char* path) { ResourceMark rm; - outputStream* out = Log(class, path)::info_stream(); + LogStream ls(Log(class, path)::info()); + outputStream* out = &ls; switch (type) { case BOOT: out->print("Expecting BOOT path=%s", path);