summaryrefslogtreecommitdiff
path: root/src/main/resources/log4j2.properties
diff options
context:
space:
mode:
authorchaochaoc <[email protected]>2024-08-22 11:27:01 +0800
committerchaochaoc <[email protected]>2024-08-22 11:27:01 +0800
commitafffd7e4894826c717f0a3e3b2bfb0c202895b5a (patch)
tree3fc7b03c55da8b717aa0dc1e7f27689826162a98 /src/main/resources/log4j2.properties
feat: update versionfeature/easy-stream-1.4
Diffstat (limited to 'src/main/resources/log4j2.properties')
-rw-r--r--src/main/resources/log4j2.properties32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/main/resources/log4j2.properties b/src/main/resources/log4j2.properties
new file mode 100644
index 0000000..d2455b2
--- /dev/null
+++ b/src/main/resources/log4j2.properties
@@ -0,0 +1,32 @@
+################################################################################
+# 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.
+################################################################################
+
+rootLogger.level = ERROR
+rootLogger.appenderRefs = console
+rootLogger.appenderRef.console.ref = ConsoleAppender
+
+appender.console.name = ConsoleAppender
+appender.console.type = CONSOLE
+appender.console.layout.type = PatternLayout
+appender.console.layout.pattern = %d{yyyy-MM-dd HH:mm:ss,SSS} %-5p %-20c %x - %m%n
+
+logger.easy.name = com.geedgenetworks.flink.easy
+logger.easy.level = DEBUG
+logger.easy.appenderRefs = console
+logger.easy.appenderRef.console.ref = ConsoleAppender
+logger.easy.additivity = false