From b79b6ae3e931d74234d1c1e0a2952d6e44d9e6bd Mon Sep 17 00:00:00 2001 From: Luis Antonio Obis Aparicio Date: Mon, 29 Jul 2024 17:39:17 +0200 Subject: [PATCH] remove initialization message on startup --- source/framework/core/src/startup.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/framework/core/src/startup.cpp b/source/framework/core/src/startup.cpp index 64c50a159..8bd31a4ad 100644 --- a/source/framework/core/src/startup.cpp +++ b/source/framework/core/src/startup.cpp @@ -80,7 +80,7 @@ struct __REST_CONST_INIT { if (_REST_USERHOME == nullptr) { _REST_USERHOME = getenv("HOME"); } else { - cout << "REST_HOME is set to " << _REST_USERHOME << endl; + // cout << "REST_HOME is set to " << _REST_USERHOME << endl; // create the directory if it does not exist std::filesystem::create_directories(_REST_USERHOME); }