You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by mi...@apache.org on 2016/11/08 12:20:25 UTC

[4/4] logging-log4j-scala git commit: Add sample

Add sample


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/39132f99
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j-scala/tree/39132f99
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j-scala/diff/39132f99

Branch: refs/heads/master
Commit: 39132f997167cc9a19b9b98a5a445b5910e803ff
Parents: 92caaa5
Author: Mikael St�ldal <mi...@magine.com>
Authored: Tue Nov 8 13:09:44 2016 +0100
Committer: Mikael St�ldal <mi...@magine.com>
Committed: Tue Nov 8 13:10:30 2016 +0100

----------------------------------------------------------------------
 log4j-api-scala-sample/pom.xml                  | 81 ++++++++++++++++++++
 .../src/main/resources/log4j2.xml               | 32 ++++++++
 .../logging/log4j/scala/sample/LoggingApp.scala | 47 ++++++++++++
 pom.xml                                         | 20 +++++
 4 files changed, 180 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j-scala/blob/39132f99/log4j-api-scala-sample/pom.xml
----------------------------------------------------------------------
diff --git a/log4j-api-scala-sample/pom.xml b/log4j-api-scala-sample/pom.xml
new file mode 100644
index 0000000..a50379f
--- /dev/null
+++ b/log4j-api-scala-sample/pom.xml
@@ -0,0 +1,81 @@
+<?xml version="1.0"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.logging.log4j</groupId>
+    <artifactId>log4j-scala</artifactId>
+    <version>2.7.1-SNAPSHOT</version>
+    <relativePath>../</relativePath>
+  </parent>
+  <artifactId>log4j-api-scala-sample</artifactId>
+  <packaging>jar</packaging>
+  <name>Scala API samples</name>
+  <url>http://http://logging.apache.org/log4j/2.x/</url>
+  <properties>
+    <scala.version>2.12.0</scala.version>
+    <scala.maven.plugin.version>3.2.2</scala.maven.plugin.version>
+  </properties>
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-api-scala_2.12</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-core</artifactId>
+      <scope>runtime</scope>
+    </dependency>
+  </dependencies>
+  <build>
+    <sourceDirectory>src/main/scala</sourceDirectory>
+    <plugins>
+      <plugin>
+        <groupId>net.alchim31.maven</groupId>
+        <artifactId>scala-maven-plugin</artifactId>
+        <version>${scala.maven.plugin.version}</version>
+        <executions>
+          <execution>
+            <goals>
+              <goal>compile</goal>
+            </goals>
+          </execution>
+        </executions>
+        <configuration>
+          <args>
+            <arg>-feature</arg>
+            <arg>-unchecked</arg>
+            <arg>-deprecation</arg>
+          </args>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>exec-maven-plugin</artifactId>
+        <version>1.5.0</version>
+        <configuration>
+          <mainClass>org.apache.logging.log4j.scala.sample.LoggingApp</mainClass>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-bundle-plugin</artifactId>
+      </plugin>
+    </plugins>
+  </build>
+</project>

http://git-wip-us.apache.org/repos/asf/logging-log4j-scala/blob/39132f99/log4j-api-scala-sample/src/main/resources/log4j2.xml
----------------------------------------------------------------------
diff --git a/log4j-api-scala-sample/src/main/resources/log4j2.xml b/log4j-api-scala-sample/src/main/resources/log4j2.xml
new file mode 100644
index 0000000..ac0664b
--- /dev/null
+++ b/log4j-api-scala-sample/src/main/resources/log4j2.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+-->
+<Configuration name="ScalaApiSample" status="error">
+    <Appenders>
+        <Console name="Console">
+            <PatternLayout>
+                <Pattern>%d %5p %c{1} %X %F:%L - %m%n</Pattern>
+            </PatternLayout>
+        </Console>
+    </Appenders>
+    <Loggers>
+        <Root level="TRACE">
+            <AppenderRef ref="Console"/>
+        </Root>
+    </Loggers>
+</Configuration>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/logging-log4j-scala/blob/39132f99/log4j-api-scala-sample/src/main/scala/org/apache/logging/log4j/scala/sample/LoggingApp.scala
----------------------------------------------------------------------
diff --git a/log4j-api-scala-sample/src/main/scala/org/apache/logging/log4j/scala/sample/LoggingApp.scala b/log4j-api-scala-sample/src/main/scala/org/apache/logging/log4j/scala/sample/LoggingApp.scala
new file mode 100644
index 0000000..245c615
--- /dev/null
+++ b/log4j-api-scala-sample/src/main/scala/org/apache/logging/log4j/scala/sample/LoggingApp.scala
@@ -0,0 +1,47 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache license, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the license for the specific language governing permissions and
+ * limitations under the license.
+ */
+package org.apache.logging.log4j.scala.sample
+
+import org.apache.logging.log4j.Level
+import org.apache.logging.log4j.message.MessageFactory2
+import org.apache.logging.log4j.scala.Logging
+
+object LoggingApp extends App with Logging {
+
+  val s1 = "foo"
+  val s2 = "bar"
+  val t = new RuntimeException("error")
+
+  logger.info(s"Hello, world: $s1 $s2")
+
+  logger.traceEntry()
+  logger.traceEntry(s1, s2)
+  val entryMessage = logger.traceEntry(logger.delegate.getMessageFactory.asInstanceOf[MessageFactory2].newMessage("foobar": CharSequence))
+
+  logger.traceExit()
+  logger.traceExit(s2)
+  logger.traceExit(entryMessage)
+  logger.traceExit(entryMessage, s2)
+  logger.traceExit(logger.delegate.getMessageFactory.asInstanceOf[MessageFactory2].newMessage("bonsai": CharSequence), s2)
+
+  logger.throwing(t)
+  logger.throwing(Level.INFO, t)
+
+  logger.catching(t)
+  logger.catching(Level.INFO, t)
+
+}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/logging-log4j-scala/blob/39132f99/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 3e2ade3..784dee5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -34,9 +34,29 @@
     <url>https://git-wip-us.apache.org/repos/asf?p=logging-log4j-scala.git;a=summary</url>
     <tag>log4j-${Log4jReleaseVersion}</tag>
   </scm>
+  <dependencyManagement>
+    <dependencies>
+      <dependency>
+        <groupId>org.apache.logging.log4j</groupId>
+        <artifactId>log4j-api-scala_2.10</artifactId>
+        <version>${project.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.logging.log4j</groupId>
+        <artifactId>log4j-api-scala_2.11</artifactId>
+        <version>${project.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.logging.log4j</groupId>
+        <artifactId>log4j-api-scala_2.12</artifactId>
+        <version>${project.version}</version>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
   <modules>
     <module>log4j-api-scala_2.10</module>
     <module>log4j-api-scala_2.11</module>
     <module>log4j-api-scala_2.12</module>
+    <module>log4j-api-scala-sample</module>
   </modules>
 </project>