v4.0.0-rc4 - add config parsing

This commit is contained in:
Liam Waldron 2024-10-20 20:45:50 -04:00
parent 7196d1e955
commit 3abcbcb00b

View File

@ -200,7 +200,10 @@ init_config()
return(EXIT_FAILURE);
}
infolog("Initialized libconfig");
if (LG_VERBOSE == 1) {
infolog("Initialized libconfig");
}
return 0;
}
@ -217,7 +220,11 @@ int
die_config()
{
config_destroy(&cfg);
infolog("Destroyed libconfig");
if (LG_VERBOSE == 1) {
infolog("Destroyed libconfig");
}
return(EXIT_SUCCESS);
}