diff options
author | Duarte Meneses <duarte.meneses@sonarsource.com> | 2015-06-16 17:37:13 +0200 |
---|---|---|
committer | Duarte Meneses <duarte.meneses@sonarsource.com> | 2015-06-24 14:34:21 +0200 |
commit | 62bded91ea52f42a71ad7d7624d5447b1a101420 (patch) | |
tree | 0d4397c4c894efa5697593d27e9e0b2e4648e337 /sonar-home | |
parent | 12a57c668bb33f808cdae781a8d9308283c3da05 (diff) | |
download | sonarqube-62bded91ea52f42a71ad7d7624d5447b1a101420.tar.gz sonarqube-62bded91ea52f42a71ad7d7624d5447b1a101420.zip |
SONAR-6648 Allow to redirect logs to custom stream
Diffstat (limited to 'sonar-home')
-rw-r--r-- | sonar-home/src/main/java/org/sonar/home/log/LogListener.java | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/sonar-home/src/main/java/org/sonar/home/log/LogListener.java b/sonar-home/src/main/java/org/sonar/home/log/LogListener.java new file mode 100644 index 00000000000..9ce4b8c668e --- /dev/null +++ b/sonar-home/src/main/java/org/sonar/home/log/LogListener.java @@ -0,0 +1,28 @@ +/* + * SonarQube, open source software quality management tool. + * Copyright (C) 2008-2014 SonarSource + * mailto:contact AT sonarsource DOT com + * + * SonarQube is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 3 of the License, or (at your option) any later version. + * + * SonarQube is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ +package org.sonar.home.log; + +public interface LogListener { + public void log(String msg, Level level); + + public static enum Level { + ERROR, WARN, INFO, DEBUG, TRACE; + } +} |