You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by ma...@apache.org on 2018/04/01 18:43:49 UTC

[1/2] logging-log4j-scala git commit: Clarify logger names

Repository: logging-log4j-scala
Updated Branches:
  refs/heads/sbt 8ef7ea212 -> 011bef8fc


Clarify logger names


Project: http://git-wip-us.apache.org/repos/asf/logging-log4j-scala/repo
Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j-scala/commit/4e87e1f3
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j-scala/tree/4e87e1f3
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j-scala/diff/4e87e1f3

Branch: refs/heads/sbt
Commit: 4e87e1f3a333d457704908a7d20fbef3a399e304
Parents: 8ef7ea2
Author: Matt Sicker <bo...@gmail.com>
Authored: Sun Apr 1 13:43:17 2018 -0500
Committer: Matt Sicker <bo...@gmail.com>
Committed: Sun Apr 1 13:43:17 2018 -0500

----------------------------------------------------------------------
 src/asciidoctor/usage.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j-scala/blob/4e87e1f3/src/asciidoctor/usage.adoc
----------------------------------------------------------------------
diff --git a/src/asciidoctor/usage.adoc b/src/asciidoctor/usage.adoc
index 528e999..6f60637 100644
--- a/src/asciidoctor/usage.adoc
+++ b/src/asciidoctor/usage.adoc
@@ -71,4 +71,4 @@ logger.debug(s"Logging in user ${user.getName} with birthday ${user.calcBirthday
 
 Most logging implementations use a hierarchical scheme for matching logger names with logging configuration.
 In this scheme the logger name hierarchy is represented by '.' characters in the logger name, in a fashion very similar to the hierarchy used for Java/Scala package names.
-The `Logging` trait will automatically name the Logger accordingly to the class it is being used in.
+The `Logger` property added by the `Logging` trait follows this convention: the trait ensures the `Logger` is automatically named according to the class it is being used in.


[2/2] logging-log4j-scala git commit: Fix grammatical error

Posted by ma...@apache.org.
Fix grammatical error


Project: http://git-wip-us.apache.org/repos/asf/logging-log4j-scala/repo
Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j-scala/commit/011bef8f
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j-scala/tree/011bef8f
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j-scala/diff/011bef8f

Branch: refs/heads/sbt
Commit: 011bef8fcfb87bed96853aabb97c35bc83979bb9
Parents: 4e87e1f
Author: Matt Sicker <bo...@gmail.com>
Authored: Sun Apr 1 13:43:44 2018 -0500
Committer: Matt Sicker <bo...@gmail.com>
Committed: Sun Apr 1 13:43:44 2018 -0500

----------------------------------------------------------------------
 src/asciidoctor/index.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j-scala/blob/011bef8f/src/asciidoctor/index.adoc
----------------------------------------------------------------------
diff --git a/src/asciidoctor/index.adoc b/src/asciidoctor/index.adoc
index 4ded4de..41239dc 100644
--- a/src/asciidoctor/index.adoc
+++ b/src/asciidoctor/index.adoc
@@ -18,7 +18,7 @@
 :toc: left
 
 Log4j Scala API is a https://www.scala-lang.org/[Scala] logging facade based on https://logging.apache.org/log4j/2.x/[Log4j 2].
-Support for Scala versions 2.10, 2.11, and 2.12 are provided, and experimental support for pre-release versions of 2.13 is also provided.
+Support for Scala versions 2.10, 2.11, and 2.12 is provided, and experimental support for pre-release versions of 2.13 is also provided.
 Log4j Scala API uses Log4j 2.x as its logging backend by default, but this can also be replaced with compatible libraries (e.g., https://logback.qos.ch/[Logback]).
 While this library is not required to use Log4j API in Scala, it does provide idiomatic Scala APIs which are friendlier to use in Scala programs than the Java APIs.