******************************************************************************
*/
+/*
+ ******************************************************************************
+ * BEGIN logging goodies.
+ */
+
+/**
+ * Defines the string used for the logging config file group.
+ */
+#define CONFGROUPNAME_LOGGING "logging"
+
+#define CONFNAME_LOGGING_INSTALL_VMXGUESTLOGDISABLED "install-vmxGuestLogDisabled"
+
+/*
+ * END logging goodies.
+ ******************************************************************************
+ */
+
#endif /* __CONF_H__ */
g_warning("%s: Failed to get value for '[%s] %s': %s (err=%d).\n",
__FUNCTION__, section, key, err->message, err->code);
}
- g_debug("%s: Returning default value for '[%s] %s'=%s.\n",
- __FUNCTION__, section, key, defValue ? "TRUE" : "FALSE");
+ g_debug("%s: Returning default value for '[%s] %s'=%s "
+ "(Not found err=%d).\n",
+ __FUNCTION__, section, key, defValue ? "TRUE" : "FALSE",
+ err->code);
value = defValue;
g_clear_error(&err);
}