Commit 889b1c1e authored by Max Kellermann's avatar Max Kellermann

state_file: fixed debug messages

Print "Loading" instead of "Saving" in state_file_read(). Added debug message to state_file_write().
parent 297d749f
......@@ -44,6 +44,8 @@ state_file_write(void)
if (state_file_path == NULL)
return;
g_debug("Saving state file %s", state_file_path);
fp = fopen(state_file_path, "w");
if (G_UNLIKELY(!fp)) {
g_warning("failed to create %s: %s",
......@@ -65,7 +67,7 @@ state_file_read(void)
assert(state_file_path != NULL);
g_debug("Saving state file");
g_debug("Loading state file %s", state_file_path);
fp = fopen(state_file_path, "r");
if (G_UNLIKELY(!fp)) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment