summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJannis Pohlmann <jannis.pohlmann@codethink.co.uk>2012-08-01 16:04:02 +0100
committerJannis Pohlmann <jannis.pohlmann@codethink.co.uk>2012-08-01 16:04:02 +0100
commita85bb6d0d5f966d807de9a3693457904f2064939 (patch)
tree95dfa6d5dde8ccbf8c7d5d25eeb919a66b5a3689
parentdfedc09b1ebd7b66ad0198419802e4ce27fcef4f (diff)
downloadnode-startup-controller-a85bb6d0d5f966d807de9a3693457904f2064939.tar.gz
Adjust DLT log levels (info -> debug, some warnings, some errors)
-rw-r--r--legacy-app-handler/main.c5
-rw-r--r--node-startup-controller/la-handler-service.c7
-rw-r--r--node-startup-controller/luc-starter.c24
-rw-r--r--node-startup-controller/main.c2
-rw-r--r--node-startup-controller/node-startup-controller-application.c6
-rw-r--r--node-startup-controller/node-startup-controller-service.c2
-rw-r--r--node-startup-controller/target-startup-monitor.c4
-rw-r--r--nsm-dummy/nsm-consumer-service.c28
-rw-r--r--nsm-dummy/nsm-dummy-application.c2
-rw-r--r--nsm-dummy/nsm-lifecycle-control-service.c4
10 files changed, 42 insertions, 42 deletions
diff --git a/legacy-app-handler/main.c b/legacy-app-handler/main.c
index d6080c6..559c0fd 100644
--- a/legacy-app-handler/main.c
+++ b/legacy-app-handler/main.c
@@ -112,9 +112,8 @@ main (int argc,
&& (shutdown_mode & NSM_SHUTDOWN_TYPE_FAST) == 0))
{
DLT_LOG (la_handler_context, DLT_LOG_ERROR,
- DLT_STRING ("Failed to register legacy application: "),
- DLT_STRING ("invalid shutdown mode \"0x%x\""),
- DLT_UINT (shutdown_mode));
+ DLT_STRING ("Failed to register legacy application: "
+ "invalid shutdown mode \"0x%x\""), DLT_INT (shutdown_mode));
/* free command line options */
g_free (unit);
diff --git a/node-startup-controller/la-handler-service.c b/node-startup-controller/la-handler-service.c
index 51558c4..d0e2445 100644
--- a/node-startup-controller/la-handler-service.c
+++ b/node-startup-controller/la-handler-service.c
@@ -491,7 +491,7 @@ la_handler_service_handle_consumer_lifecycle_request_finish (JobManager *manage
g_return_if_fail (data != NULL);
/* log that we are completing a lifecycle request */
- DLT_LOG (la_handler_context, DLT_LOG_INFO,
+ DLT_LOG (la_handler_context, DLT_LOG_DEBUG,
DLT_STRING ("Completing a lifecycle request: request id "),
DLT_UINT (data->request_id));
@@ -529,8 +529,9 @@ la_handler_service_handle_consumer_lifecycle_request_finish (JobManager *manage
}
else if (error_status == NSM_ERROR_STATUS_OK)
{
- DLT_LOG (la_handler_context, DLT_LOG_INFO,
- DLT_STRING ("Successfully notified NSM about completed lifecycle request: "),
+ DLT_LOG (la_handler_context, DLT_LOG_DEBUG,
+ DLT_STRING ("Successfully notified NSM about completed "
+ "lifecycle request: "),
DLT_STRING ("request id "), DLT_UINT (data->request_id));
}
else
diff --git a/node-startup-controller/luc-starter.c b/node-startup-controller/luc-starter.c
index 6a2d02e..faa35e8 100644
--- a/node-startup-controller/luc-starter.c
+++ b/node-startup-controller/luc-starter.c
@@ -337,7 +337,7 @@ luc_starter_start_next_group (LUCStarter *starter)
/* fetch the next group */
group = g_array_index (starter->start_order, gint, 0);
- DLT_LOG (controller_context, DLT_LOG_INFO,
+ DLT_LOG (controller_context, DLT_LOG_DEBUG,
DLT_STRING ("Starting LUC group: "), DLT_INT (group));
/* look up the apps for the group */
@@ -360,7 +360,7 @@ luc_starter_start_app (const gchar *app,
g_return_if_fail (app != NULL && *app != '\0');
g_return_if_fail (IS_LUC_STARTER (starter));
- DLT_LOG (controller_context, DLT_LOG_INFO,
+ DLT_LOG (controller_context, DLT_LOG_DEBUG,
DLT_STRING ("Starting LUC app: "), DLT_STRING (app));
/* create the new cancellable */
@@ -396,7 +396,7 @@ luc_starter_start_app_finish (JobManager *manager,
g_return_if_fail (IS_LUC_STARTER (user_data));
g_return_if_fail (starter->start_order->len > 0);
- DLT_LOG (controller_context, DLT_LOG_INFO,
+ DLT_LOG (controller_context, DLT_LOG_DEBUG,
DLT_STRING ("Finished starting LUC app: "), DLT_STRING (unit));
/* respond to errors */
@@ -428,7 +428,7 @@ luc_starter_start_app_finish (JobManager *manager,
/* check if this was the last app in the group to be started */
if (apps->len == 0)
{
- DLT_LOG (controller_context, DLT_LOG_INFO,
+ DLT_LOG (controller_context, DLT_LOG_DEBUG,
DLT_STRING ("Finished starting LUC group: "), DLT_INT (group));
/* remove the group from the groups and the order */
@@ -493,7 +493,7 @@ luc_starter_check_luc_required_finish (GObject *object,
DLT_STRING (error->message));
g_clear_error (&error);
- DLT_LOG (controller_context, DLT_LOG_INFO,
+ DLT_LOG (controller_context, DLT_LOG_DEBUG,
DLT_STRING ("Assuming that we should start the LUC"));
/* start all the LUC groups now */
@@ -504,7 +504,7 @@ luc_starter_check_luc_required_finish (GObject *object,
/* check whether we need to start the LUC or not */
if (luc_required)
{
- DLT_LOG (controller_context, DLT_LOG_INFO,
+ DLT_LOG (controller_context, DLT_LOG_DEBUG,
DLT_STRING ("LUC is required, starting it now"));
/* start all the LUC groups now */
@@ -513,7 +513,7 @@ luc_starter_check_luc_required_finish (GObject *object,
else
{
/* LUC is not required, log this information */
- DLT_LOG (controller_context, DLT_LOG_INFO, DLT_STRING ("LUC is not required"));
+ DLT_LOG (controller_context, DLT_LOG_DEBUG, DLT_STRING ("LUC is not required"));
/* notify others that we have started the LUC groups; we haven't
* in this case but the call of luc_starter_start_groups() may
@@ -543,10 +543,10 @@ luc_starter_start_groups_for_real (LUCStarter *starter)
g_return_if_fail (IS_LUC_STARTER (starter));
/* log prioritised LUC types */
- DLT_LOG (controller_context, DLT_LOG_INFO, DLT_STRING ("Prioritised LUC types:"));
+ DLT_LOG (controller_context, DLT_LOG_DEBUG, DLT_STRING ("Prioritised LUC types:"));
for (n = 0; n < starter->prioritised_types->len; n++)
{
- DLT_LOG (controller_context, DLT_LOG_INFO,
+ DLT_LOG (controller_context, DLT_LOG_DEBUG,
DLT_INT (g_array_index (starter->prioritised_types, gint, n)));
}
@@ -597,10 +597,10 @@ luc_starter_start_groups_for_real (LUCStarter *starter)
}
g_array_sort_with_data (starter->start_order, luc_starter_compare_luc_types, starter);
- DLT_LOG (controller_context, DLT_LOG_INFO, DLT_STRING ("LUC start groups (ordered):"));
+ DLT_LOG (controller_context, DLT_LOG_DEBUG, DLT_STRING ("LUC start groups (ordered):"));
for (n = 0; n < starter->start_order->len; n++)
{
- DLT_LOG (controller_context, DLT_LOG_INFO,
+ DLT_LOG (controller_context, DLT_LOG_DEBUG,
DLT_INT (g_array_index (starter->start_order, gint, n)));
}
@@ -640,7 +640,7 @@ luc_starter_start_groups (LUCStarter *starter)
}
else
{
- DLT_LOG (controller_context, DLT_LOG_ERROR,
+ DLT_LOG (controller_context, DLT_LOG_WARN,
DLT_STRING ("NSM unavailable, starting the LUC unconditionally"));
/* start all the LUC groups now */
diff --git a/node-startup-controller/main.c b/node-startup-controller/main.c
index 7667984..c3093d9 100644
--- a/node-startup-controller/main.c
+++ b/node-startup-controller/main.c
@@ -149,7 +149,7 @@ main (int argc,
/* start the legacy app handler */
if (!la_handler_service_start (la_handler_service, &error))
{
- DLT_LOG (controller_context, DLT_LOG_ERROR,
+ DLT_LOG (controller_context, DLT_LOG_FATAL,
DLT_STRING ("Failed to start the legacy app handler service: "),
DLT_STRING (error->message));
diff --git a/node-startup-controller/node-startup-controller-application.c b/node-startup-controller/node-startup-controller-application.c
index 929fe32..85f8e00 100644
--- a/node-startup-controller/node-startup-controller-application.c
+++ b/node-startup-controller/node-startup-controller-application.c
@@ -222,7 +222,7 @@ node_startup_controller_application_init (NodeStartupControllerApplication *appl
application->watchdog_client = watchdog_client_new (watchdog_sec);
/* log information about the watchdog timeout using DLT */
- DLT_LOG (controller_context, DLT_LOG_INFO,
+ DLT_LOG (controller_context, DLT_LOG_DEBUG,
DLT_STRING ("Updating the systemd watchdog timestamp every "),
DLT_UINT (watchdog_sec), DLT_STRING (" seconds"));
}
@@ -365,7 +365,7 @@ node_startup_controller_application_handle_register_finish (GObject *object
}
else if (error_code == NSM_ERROR_STATUS_OK)
{
- DLT_LOG (controller_context, DLT_LOG_INFO,
+ DLT_LOG (controller_context, DLT_LOG_DEBUG,
DLT_STRING ("Successfully registered the node startup controller "
"as a shutdown consumer"));
}
@@ -405,7 +405,7 @@ node_startup_controller_application_handle_unregister_finish (GObject *obje
}
else if (error_code == NSM_ERROR_STATUS_OK)
{
- DLT_LOG (controller_context, DLT_LOG_INFO,
+ DLT_LOG (controller_context, DLT_LOG_DEBUG,
DLT_STRING ("Successfully unregistered the node startup controller "
"as a shutdown consumer"));
}
diff --git a/node-startup-controller/node-startup-controller-service.c b/node-startup-controller/node-startup-controller-service.c
index 6345bf1..a5510a4 100644
--- a/node-startup-controller/node-startup-controller-service.c
+++ b/node-startup-controller/node-startup-controller-service.c
@@ -408,7 +408,7 @@ node_startup_controller_service_handle_register_with_luc (NodeStartupController
/* log the new last user context */
debug_text = g_variant_print (service->current_user_context, TRUE);
DLT_LOG (controller_context, DLT_LOG_DEBUG,
- DLT_STRING ("New LUC is: "), DLT_STRING (debug_text));
+ DLT_STRING ("Updated LUC to: "), DLT_STRING (debug_text));
g_free (debug_text);
/* release the current context */
diff --git a/node-startup-controller/target-startup-monitor.c b/node-startup-controller/target-startup-monitor.c
index 635ee74..7d29f10 100644
--- a/node-startup-controller/target-startup-monitor.c
+++ b/node-startup-controller/target-startup-monitor.c
@@ -310,7 +310,7 @@ target_startup_monitor_get_unit_finish (GObject *object,
}
else
{
- DLT_LOG (controller_context, DLT_LOG_INFO,
+ DLT_LOG (controller_context, DLT_LOG_DEBUG,
DLT_STRING ("Creating D-Bus proxy for unit \""), DLT_STRING (object_path),
DLT_STRING ("\""));
@@ -361,7 +361,7 @@ target_startup_monitor_unit_proxy_new_finish (GObject *object,
state = systemd_unit_get_active_state (unit);
/* log the the active state has changed */
- DLT_LOG (controller_context, DLT_LOG_INFO,
+ DLT_LOG (controller_context, DLT_LOG_DEBUG,
DLT_STRING ("Active state of unit \""), DLT_STRING (data->unit_name),
DLT_STRING ("\" changed to "), DLT_STRING (state));
diff --git a/nsm-dummy/nsm-consumer-service.c b/nsm-dummy/nsm-consumer-service.c
index 9d238f0..5b0a08b 100644
--- a/nsm-dummy/nsm-consumer-service.c
+++ b/nsm-dummy/nsm-consumer-service.c
@@ -277,7 +277,7 @@ nsm_consumer_service_handle_register_shutdown_client (NSMConsumer *obj
g_dbus_proxy_set_default_timeout (G_DBUS_PROXY (consumer), timeout);
/* log information about the re-registration */
- DLT_LOG (nsm_dummy_context, DLT_LOG_INFO,
+ DLT_LOG (nsm_dummy_context, DLT_LOG_DEBUG,
DLT_STRING ("Re-registered shutdown client: "),
DLT_STRING ("bus name "), DLT_STRING (bus_name),
DLT_STRING (", object path "), DLT_STRING (object_path),
@@ -321,7 +321,7 @@ nsm_consumer_service_handle_register_shutdown_client (NSMConsumer *obj
shutdown_client);
/* log the registered shutdown client */
- DLT_LOG (nsm_dummy_context, DLT_LOG_INFO,
+ DLT_LOG (nsm_dummy_context, DLT_LOG_DEBUG,
DLT_STRING ("Shutdown client registered: "),
DLT_STRING ("bus name "), DLT_STRING (bus_name),
DLT_STRING (", object path "), DLT_STRING (object_path),
@@ -391,7 +391,7 @@ nsm_consumer_service_handle_unregister_shutdown_client (NSMConsumer *o
if (shutdown_client_get_shutdown_mode (shutdown_client) == 0)
{
/* log the unregistration now */
- DLT_LOG (nsm_dummy_context, DLT_LOG_INFO,
+ DLT_LOG (nsm_dummy_context, DLT_LOG_DEBUG,
DLT_STRING ("Shutdown client unregistered: "),
DLT_STRING ("bus name "), DLT_STRING (bus_name),
DLT_STRING (", object path "), DLT_STRING (object_path));
@@ -430,7 +430,7 @@ nsm_consumer_service_handle_lifecycle_request_complete (NSMConsumer *o
g_return_val_if_fail (G_IS_DBUS_METHOD_INVOCATION (invocation), FALSE);
g_return_val_if_fail (NSM_CONSUMER_IS_SERVICE (service), FALSE);
- DLT_LOG (nsm_dummy_context, DLT_LOG_INFO,
+ DLT_LOG (nsm_dummy_context, DLT_LOG_DEBUG,
DLT_STRING ("Finished shutting down client: "),
DLT_STRING ("request id "), DLT_UINT (request_id),
DLT_STRING (", status "), DLT_UINT (status));
@@ -495,19 +495,19 @@ nsm_consumer_service_shut_down_next_client_in_queue (NSMConsumerService *service
g_return_if_fail (NSM_CONSUMER_IS_SERVICE (service));
g_return_if_fail (service->shutdown_queue != NULL);
- DLT_LOG (nsm_dummy_context, DLT_LOG_INFO,
+ DLT_LOG (nsm_dummy_context, DLT_LOG_DEBUG,
DLT_STRING ("Shutting down next client in queue"));
/* check if we have processed all clients in the queue */
if (service->shutdown_queue->remaining_clients == NULL)
{
- DLT_LOG (nsm_dummy_context, DLT_LOG_INFO,
+ DLT_LOG (nsm_dummy_context, DLT_LOG_DEBUG,
DLT_STRING ("Processed all items in the queue for this mode"));
/* check if we have processed all shutdown modes */
if (service->shutdown_queue->current_mode == NSM_SHUTDOWN_TYPE_NORMAL)
{
- DLT_LOG (nsm_dummy_context, DLT_LOG_INFO,
+ DLT_LOG (nsm_dummy_context, DLT_LOG_DEBUG,
DLT_STRING ("All clients have been shut down"));
/* fast and normal have been processed, we are finished */
@@ -521,7 +521,7 @@ nsm_consumer_service_shut_down_next_client_in_queue (NSMConsumerService *service
}
else if (service->shutdown_queue->current_mode == NSM_SHUTDOWN_TYPE_FAST)
{
- DLT_LOG (nsm_dummy_context, DLT_LOG_INFO,
+ DLT_LOG (nsm_dummy_context, DLT_LOG_DEBUG,
DLT_STRING ("Transitioning to normal shutdown mode"));
/* move on to normal shutdown mode and reset clients to be processed */
@@ -545,7 +545,7 @@ nsm_consumer_service_shut_down_next_client_in_queue (NSMConsumerService *service
if ((shutdown_client_get_shutdown_mode (client)
& service->shutdown_queue->current_mode) != 0)
{
- DLT_LOG (nsm_dummy_context, DLT_LOG_INFO,
+ DLT_LOG (nsm_dummy_context, DLT_LOG_DEBUG,
DLT_STRING ("Shutting down a client: "),
DLT_STRING ("bus name "),
DLT_STRING (shutdown_client_get_bus_name (client)),
@@ -571,7 +571,7 @@ nsm_consumer_service_shut_down_next_client_in_queue (NSMConsumerService *service
}
else
{
- DLT_LOG (nsm_dummy_context, DLT_LOG_INFO,
+ DLT_LOG (nsm_dummy_context, DLT_LOG_DEBUG,
DLT_STRING ("Skipping client "),
DLT_STRING (shutdown_client_get_object_path (client)),
DLT_STRING (": it is not registered for shutdown mode "),
@@ -629,7 +629,7 @@ nsm_consumer_service_lifecycle_request_finish (GObject *object,
else if (error_code == NSM_ERROR_STATUS_OK)
{
/* log the successful shutdown */
- DLT_LOG (nsm_dummy_context, DLT_LOG_INFO,
+ DLT_LOG (nsm_dummy_context, DLT_LOG_DEBUG,
DLT_STRING ("Successfully shut down client: "),
DLT_STRING ("bus name "),
DLT_STRING (shutdown_client_get_bus_name (client)),
@@ -649,7 +649,7 @@ nsm_consumer_service_lifecycle_request_finish (GObject *object,
else if (error_code == NSM_ERROR_STATUS_RESPONSE_PENDING)
{
/* log that we are waiting for the client to finish its shutdown */
- DLT_LOG (nsm_dummy_context, DLT_LOG_INFO,
+ DLT_LOG (nsm_dummy_context, DLT_LOG_DEBUG,
DLT_STRING ("Waiting for client to shut down: "),
DLT_STRING ("request id "),
DLT_UINT (GPOINTER_TO_UINT (client)),
@@ -674,7 +674,7 @@ nsm_consumer_service_lifecycle_request_finish (GObject *object,
else
{
/* log that shutting down this client failed */
- DLT_LOG (nsm_dummy_context, DLT_LOG_INFO,
+ DLT_LOG (nsm_dummy_context, DLT_LOG_ERROR,
DLT_STRING ("Failed shutting down a client: "),
DLT_STRING ("request id "),
DLT_UINT (GPOINTER_TO_UINT (client)),
@@ -724,7 +724,7 @@ nsm_consumer_service_shut_down_client_timeout (gpointer user_data)
* for to shut down */
if (service->shutdown_queue->timeout_request == GPOINTER_TO_UINT (client))
{
- DLT_LOG (nsm_dummy_context, DLT_LOG_INFO,
+ DLT_LOG (nsm_dummy_context, DLT_LOG_WARN,
DLT_STRING ("Received timeout while shutting down a client: "),
DLT_STRING ("bus name "),
DLT_STRING (shutdown_client_get_bus_name (client)),
diff --git a/nsm-dummy/nsm-dummy-application.c b/nsm-dummy/nsm-dummy-application.c
index fccc13c..0f54a23 100644
--- a/nsm-dummy/nsm-dummy-application.c
+++ b/nsm-dummy/nsm-dummy-application.c
@@ -172,7 +172,7 @@ nsm_dummy_application_init (NSMDummyApplication *application)
application->watchdog_client = watchdog_client_new (watchdog_sec);
/* log information about the watchdog timeout using DLT */
- DLT_LOG (nsm_dummy_context, DLT_LOG_INFO,
+ DLT_LOG (nsm_dummy_context, DLT_LOG_DEBUG,
DLT_STRING ("Updating the systemd watchdog timestamp every "),
DLT_UINT (watchdog_sec), DLT_STRING (" seconds"));
}
diff --git a/nsm-dummy/nsm-lifecycle-control-service.c b/nsm-dummy/nsm-lifecycle-control-service.c
index 9f918bf..0450af0 100644
--- a/nsm-dummy/nsm-lifecycle-control-service.c
+++ b/nsm-dummy/nsm-lifecycle-control-service.c
@@ -201,7 +201,7 @@ nsm_lifecycle_control_service_handle_set_node_state (NSMLifecycleControl
if (node_state_id >= NSM_NODE_STATE_NOT_SET && node_state_id <= NSM_NODE_STATE_LAST)
{
/* log how we handled the node state */
- DLT_LOG (nsm_dummy_context, DLT_LOG_INFO,
+ DLT_LOG (nsm_dummy_context, DLT_LOG_DEBUG,
DLT_STRING ("Node state "), DLT_INT (node_state_id),
DLT_STRING (" applied: "),
DLT_STRING (service->accept_state ? "yes" : "no"));
@@ -217,7 +217,7 @@ nsm_lifecycle_control_service_handle_set_node_state (NSMLifecycleControl
else
{
/* log how we handled the node state */
- DLT_LOG (nsm_dummy_context, DLT_LOG_INFO,
+ DLT_LOG (nsm_dummy_context, DLT_LOG_DEBUG,
DLT_STRING ("Received an invalid node state: "), DLT_INT (node_state_id));
/* let the caller know that it sent an invalid parameter */