From d013b1f74a4281ba9892fd1457e42474f12977b1 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Tue, 29 Jan 2013 23:21:11 -0800 Subject: [PATCH] - Client: message tweak for GPU suspend/resume --- client/cs_prefs.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/client/cs_prefs.cpp b/client/cs_prefs.cpp index feb6235536..29eabe311a 100644 --- a/client/cs_prefs.cpp +++ b/client/cs_prefs.cpp @@ -287,12 +287,14 @@ int CLIENT_STATE::check_suspend_processing() { if (old_gpu_suspend_reason && !gpu_suspend_reason) { if (log_flags.task) { - msg_printf(NULL, MSG_INFO, "[task] resuming GPU activity"); + msg_printf(NULL, MSG_INFO, "[task] Resuming GPU computation"); } request_schedule_cpus("GPU resumption"); } else if (!old_gpu_suspend_reason && gpu_suspend_reason) { if (log_flags.task) { - msg_printf(NULL, MSG_INFO, "[task] suspending GPU activity"); + msg_printf(NULL, MSG_INFO, "[task] Suspending GPU computation - %s", + suspend_reason_string(gpu_suspend_reason) + ); } request_schedule_cpus("GPU suspension"); }