From 889b1c1eae6f6de14744371539d17bd85c87a70d Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 15 Jul 2009 14:29:30 +0200 Subject: state_file: fixed debug messages Print "Loading" instead of "Saving" in state_file_read(). Added debug message to state_file_write(). --- src/state_file.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/state_file.c b/src/state_file.c index ceb6ee6e6..073e85f6b 100644 --- a/src/state_file.c +++ b/src/state_file.c @@ -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)) { -- cgit v1.2.3