dff8d9929d
Signed-off-by: Jan Pokorný <jpokorny@redhat.com>
35 lines
1.3 KiB
Diff
35 lines
1.3 KiB
Diff
From: "Gao,Yan" <ygao@suse.com>
|
|
Date: Wed, 26 Aug 2015 18:12:56 +0200
|
|
Subject: [PATCH] Log: services: Reduce severity of noisy log messages
|
|
|
|
They occurred for every monitor operation of systemd resources.
|
|
|
|
(cherry picked from commit a77c401a3fcdedec165c05d27a75d75abcebf4a1)
|
|
---
|
|
lib/services/services.c | 6 +++---
|
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/lib/services/services.c b/lib/services/services.c
|
|
index 3f40078..abf1458 100644
|
|
--- a/lib/services/services.c
|
|
+++ b/lib/services/services.c
|
|
@@ -366,15 +366,15 @@ services_set_op_pending(svc_action_t *op, DBusPendingCall *pending)
|
|
if (pending) {
|
|
crm_info("Lost pending %s DBus call (%p)", op->id, op->opaque->pending);
|
|
} else {
|
|
- crm_info("Done with pending %s DBus call (%p)", op->id, op->opaque->pending);
|
|
+ crm_trace("Done with pending %s DBus call (%p)", op->id, op->opaque->pending);
|
|
}
|
|
dbus_pending_call_unref(op->opaque->pending);
|
|
}
|
|
op->opaque->pending = pending;
|
|
if (pending) {
|
|
- crm_info("Updated pending %s DBus call (%p)", op->id, pending);
|
|
+ crm_trace("Updated pending %s DBus call (%p)", op->id, pending);
|
|
} else {
|
|
- crm_info("Cleared pending %s DBus call", op->id);
|
|
+ crm_trace("Cleared pending %s DBus call", op->id);
|
|
}
|
|
}
|
|
#endif
|