From 84d287dca42f504a7a005f75528aa2be1bb29adb Mon Sep 17 00:00:00 2001 From: Robert von Burg Date: Fri, 14 Nov 2014 16:43:44 +0100 Subject: [PATCH] [New] rest logging configuration: 'restLogging' 'restLoggingEntity' --- .../main/java/li/strolch/rest/RestfulStrolchComponent.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/li.strolch.rest/src/main/java/li/strolch/rest/RestfulStrolchComponent.java b/li.strolch.rest/src/main/java/li/strolch/rest/RestfulStrolchComponent.java index c4faa6919..e3799a88e 100644 --- a/li.strolch.rest/src/main/java/li/strolch/rest/RestfulStrolchComponent.java +++ b/li.strolch.rest/src/main/java/li/strolch/rest/RestfulStrolchComponent.java @@ -137,8 +137,9 @@ public class RestfulStrolchComponent extends StrolchComponent { this.restTracing = configuration.getString(PARAM_REST_TRACING, "OFF"); //$NON-NLS-1$ this.restTracingThreshold = configuration.getString(PARAM_REST_TRACING_THRESHOLD, "TRACE"); //$NON-NLS-1$ - String msg = "Set restTracing={0} with threshold={1}"; //$NON-NLS-1$ - logger.info(MessageFormat.format(msg, this.restTracing, this.restTracingThreshold)); + String msg = "Set restLogging={0} with logEntities={1} restTracing={2} with threshold={3}"; //$NON-NLS-1$ + logger.info(MessageFormat.format(msg, this.restLogging, this.restLoggingEntity, this.restTracing, + this.restTracingThreshold)); super.initialize(configuration); }