You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@celix.apache.org by pn...@apache.org on 2015/10/13 12:22:17 UTC

[49/50] [abbrv] celix git commit: CELIX-237: Only enabling error logging for the dfi lib

CELIX-237: Only enabling error logging for the dfi lib


Project: http://git-wip-us.apache.org/repos/asf/celix/repo
Commit: http://git-wip-us.apache.org/repos/asf/celix/commit/8689fc10
Tree: http://git-wip-us.apache.org/repos/asf/celix/tree/8689fc10
Diff: http://git-wip-us.apache.org/repos/asf/celix/diff/8689fc10

Branch: refs/heads/develop
Commit: 8689fc1021932c7baaf9f6bc3d613af97d17c3b0
Parents: c66eb88
Author: Pepijn Noltes <pe...@gmail.com>
Authored: Tue Oct 13 12:00:48 2015 +0200
Committer: Pepijn Noltes <pe...@gmail.com>
Committed: Tue Oct 13 12:16:50 2015 +0200

----------------------------------------------------------------------
 .../rsa/private/src/remote_service_admin_dfi.c            | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/celix/blob/8689fc10/remote_services/remote_service_admin_dfi/rsa/private/src/remote_service_admin_dfi.c
----------------------------------------------------------------------
diff --git a/remote_services/remote_service_admin_dfi/rsa/private/src/remote_service_admin_dfi.c b/remote_services/remote_service_admin_dfi/rsa/private/src/remote_service_admin_dfi.c
index 9ea470b..4bd8c58 100644
--- a/remote_services/remote_service_admin_dfi/rsa/private/src/remote_service_admin_dfi.c
+++ b/remote_services/remote_service_admin_dfi/rsa/private/src/remote_service_admin_dfi.c
@@ -135,11 +135,11 @@ celix_status_t remoteServiceAdmin_create(bundle_context_pt context, remote_servi
 
         if (logHelper_create(context, &(*admin)->loghelper) == CELIX_SUCCESS) {
             logHelper_start((*admin)->loghelper);
-            dynCommon_logSetup((void *)remoteServiceAdmin_log, *admin, 4);
-            dynType_logSetup((void *)remoteServiceAdmin_log, *admin, 4);
-            dynFunction_logSetup((void *)remoteServiceAdmin_log, *admin, 4);
-            dynInterface_logSetup((void *)remoteServiceAdmin_log, *admin, 4);
-            jsonSerializer_logSetup((void *)remoteServiceAdmin_log, *admin, 4);
+            dynCommon_logSetup((void *)remoteServiceAdmin_log, *admin, 1);
+            dynType_logSetup((void *)remoteServiceAdmin_log, *admin, 1);
+            dynFunction_logSetup((void *)remoteServiceAdmin_log, *admin, 1);
+            dynInterface_logSetup((void *)remoteServiceAdmin_log, *admin, 1);
+            jsonSerializer_logSetup((void *)remoteServiceAdmin_log, *admin, 1);
         }
 
         bundleContext_getProperty(context, "RSA_PORT", &port);