LoginSignup
1
1

More than 5 years have passed since last update.

コンソールのメッセージに色付け(Logback)

Last updated at Posted at 2017-02-14

見やすくなって良かったやつ

logback.xml
<?xml version="1.0" encoding="UTF-8" ?>
<configuration debug="true">
  <property file="C:/appfiles/logback.properties" />

  <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
    <target>System.out</target>
    <encoder>
      <pattern>%-5r %d{yyyy-MM-dd HH:mm:ss} [%t] %highlight(%-5level) %cyan(%-40.40logger{36}) [%file:%line] %green(%msg) %n</pattern>
    </encoder>
    <withJasi>true</withJasi>
  </appender>
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1