diff options
| author | Joe Kirchoff <[email protected]> | 2022-03-22 11:49:35 -0700 |
|---|---|---|
| committer | Joe Kirchoff <[email protected]> | 2022-03-22 11:49:35 -0700 |
| commit | c23bbbc437179309f260fdc65f3abbf3719dbc01 (patch) | |
| tree | 92569d823d981c2dbd8d6bd5d90e680645f0bc6f /zenserver/zenserver.cpp | |
| parent | Enable Horde compute code on Linux & Mac (#61) (diff) | |
| download | zen-c23bbbc437179309f260fdc65f3abbf3719dbc01.tar.xz zen-c23bbbc437179309f260fdc65f3abbf3719dbc01.zip | |
Add additional logging for compute services start
Diffstat (limited to 'zenserver/zenserver.cpp')
| -rw-r--r-- | zenserver/zenserver.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/zenserver/zenserver.cpp b/zenserver/zenserver.cpp index c9708dba8..3694a3e66 100644 --- a/zenserver/zenserver.cpp +++ b/zenserver/zenserver.cpp @@ -847,6 +847,8 @@ ZenServer::InitializeCompute(const ZenServerOptions& ServerOptions) // Horde compute upstream if (UpstreamConfig.HordeConfig.Url.empty() == false && UpstreamConfig.JupiterConfig.Url.empty() == false) { + ZEN_INFO("instantiating compute service"); + std::string_view EndpointName = UpstreamConfig.HordeConfig.Name.empty() ? "Horde"sv : UpstreamConfig.HordeConfig.Name; auto ComputeOptions = @@ -884,6 +886,10 @@ ZenServer::InitializeCompute(const ZenServerOptions& ServerOptions) StorageAuthConfig, *m_AuthMgr); } + else + { + ZEN_INFO("NOT instantiating compute service (missing Horde or Jupiter config)"); + } } #endif // ZEN_WITH_COMPUTE_SERVICES |