This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-tracer.git
commit b5bebd55db2950a221dc2e983f4350c3326dced3 Author: Chetan Mehrotra <[email protected]> AuthorDate: Fri May 22 09:59:22 2015 +0000 SLING-4739 - Log Tracer - To enable logs for specific category at specific level and only for specific request Add links to public docs on Sling site git-svn-id: https://svn.apache.org/repos/asf/sling/trunk@1681063 13f79535-47bb-0310-9956-ffa450edef68 --- README.md | 5 +++++ pom.xml | 2 ++ src/main/java/org/apache/sling/tracer/internal/LogTracer.java | 4 +++- 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md new file mode 100644 index 0000000..df7d107 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# Apache Sling Log Tracer + +Refer to [Log Tracer][1] + +[1]: http://sling.apache.org/documentation/bundles/log-tracers.html \ No newline at end of file diff --git a/pom.xml b/pom.xml index 866fb1c..ac55563 100644 --- a/pom.xml +++ b/pom.xml @@ -37,6 +37,8 @@ Tracer provides support for enabling the logs for specific category at specific level and only for specific request. It provides a very fine level of control via config provided as part of HTTP request around how the logging should be performed for given category. + + Refer to http://sling.apache.org/documentation/bundles/log-tracers.html </description> <properties> diff --git a/src/main/java/org/apache/sling/tracer/internal/LogTracer.java b/src/main/java/org/apache/sling/tracer/internal/LogTracer.java index 82490bb..3861f29 100644 --- a/src/main/java/org/apache/sling/tracer/internal/LogTracer.java +++ b/src/main/java/org/apache/sling/tracer/internal/LogTracer.java @@ -66,7 +66,9 @@ import org.slf4j.Marker; */ @Component( label = "Apache Sling Log Tracer", - description = "Provides support for enabling log for specific loggers on per request basis", + description = "Provides support for enabling log for specific loggers on per request basis. " + + "Refer to http://sling.apache.org/documentation/bundles/log-tracers.html for " + + "more details", policy = ConfigurationPolicy.REQUIRE, metatype = true ) -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
