Skip to content

Commit

Permalink
fix logging errors
Browse files Browse the repository at this point in the history
  • Loading branch information
shirly121 committed Sep 29, 2024
1 parent c3b589d commit 14635cc
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
4 changes: 4 additions & 0 deletions interactive_engine/compiler/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,10 @@
<groupId>com.alibaba.graphscope</groupId>
<artifactId>interactive</artifactId>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</dependency>
</dependencies>

<profiles>
Expand Down
29 changes: 29 additions & 0 deletions interactive_engine/compiler/src/main/resources/logback.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<!--
~ /*
~ * Copyright 2020 Alibaba Group Holding Limited.
~ *
~ * Licensed 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>
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
ใ€€ใ€€ใ€€ใ€€ใ€€<encoder>
ใ€€ใ€€ใ€€ใ€€ใ€€ใ€€ใ€€ใ€€ใ€€<pattern>[%d{ISO8601}][%p][%t][%c:%L] %m%n</pattern>
ใ€€ใ€€ใ€€ใ€€ใ€€</encoder>
ใ€€ใ€€ใ€€</appender>

<root level="info">
<appender-ref ref="STDOUT" />
</root>
</configuration>

0 comments on commit 14635cc

Please sign in to comment.