X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fpazpar2.c;h=b3928aa4628efaa1c1b314603c713f5bd63edd3a;hb=4f540f411b3a09f282b75089a86ed9d86cc4846e;hp=478188c07dd1f6df9a021777c7453d1b853c8b81;hpb=67012bfe2cfb3f5ffc540747dac5d062fc5b7706;p=pazpar2-moved-to-github.git diff --git a/src/pazpar2.c b/src/pazpar2.c index 478188c..b3928aa 100644 --- a/src/pazpar2.c +++ b/src/pazpar2.c @@ -58,7 +58,7 @@ void child_handler(void *data) static void show_version(void) { - char yaz_version_str[80]; + char yaz_version_str[20]; printf("Pazpar2 " PACKAGE_VERSION #ifdef PAZPAR2_VERSION_SHA1 " " @@ -214,17 +214,20 @@ static int sc_main( } pazpar2_mutex_init(); - if (!test_mode) { - yaz_log(YLOG_LOG, "Pazpar2 start " VERSION " " + char yaz_version_str[20]; + char yaz_sha1_str[41]; + yaz_log(YLOG_LOG, "Pazpar2 %s " VERSION " " #ifdef PAZPAR2_VERSION_SHA1 PAZPAR2_VERSION_SHA1 #else "-" #endif - ); + , test_mode ? "test" : "start"); + yaz_version(yaz_version_str, yaz_sha1_str); + yaz_log(YLOG_LOG, "YAZ %s %s", yaz_version_str, yaz_sha1_str); } - + config = config_create(config_fname); if (!config) return 1;