1 2 3 4 5 6 7 8 9 10 11 12 13 14
// Copyright Epic Games, Inc. All Rights Reserved. #pragma once #include <zencore/logging.h> namespace zen { struct ZenServerOptions; void InitializeLogging(const ZenServerOptions& GlobalOptions); void ShutdownLogging(); } // namespace zen