SUPPORT-8890. Добавлен вывод в логи номера версии приложения

(cherry picked from commit bf5d2b617ba0bda8b7c12b60e2fc73f765cb93ad)
This commit is contained in:
Наиля Алашкова 2025-02-13 13:10:56 +03:00
parent 57297d574f
commit 722092ce73

View file

@ -1,4 +1,5 @@
#include "main_conf.h"
#include "version.h"
#include <assert.h>
#include <stdlib.h>
@ -61,6 +62,7 @@ main_conf_load(main_conf_t* conf, const char *filename, const conf_file_context_
goto error;
}
LOG_INFO("version = " APP_VERSION);
LOG_INFO("conf_file = %s", conf->conf_file);
LOG_TRACE("main_conf_load exit with success");
return 0;