-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[LOGMGR-150] Add a way to capture stdout and stderr early and write e…
…rror messages to stderr.
- Loading branch information
Showing
7 changed files
with
101 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
81 changes: 81 additions & 0 deletions
81
src/main/java/org/jboss/logmanager/StandardOutputStreams.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
/* | ||
* JBoss, Home of Professional Open Source. | ||
* | ||
* Copyright 2017 Red Hat, Inc., and individual contributors | ||
* as indicated by the @author tags. | ||
* | ||
* 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. | ||
*/ | ||
|
||
package org.jboss.logmanager; | ||
|
||
import java.io.PrintStream; | ||
|
||
/** | ||
* Caches {@link System#out stdout} and {@link System#err stderr} early. | ||
* | ||
* @author <a href="mailto:[email protected]">James R. Perkins</a> | ||
*/ | ||
@SuppressWarnings("WeakerAccess") | ||
public class StandardOutputStreams { | ||
public static final PrintStream stdout = System.out; | ||
public static final PrintStream stderr = System.err; | ||
|
||
/** | ||
* Prints an error messages to {@link #stderr stderr}. | ||
* | ||
* @param msg the message to print | ||
*/ | ||
public static void printError(final String msg) { | ||
stderr.println(msg); | ||
} | ||
|
||
/** | ||
* Prints an error messages to {@link #stderr stderr}. | ||
* | ||
* @param format the {@link java.util.Formatter format} | ||
* @param args the arguments for the format | ||
*/ | ||
public static void printError(final String format, final Object... args) { | ||
stderr.printf(format, args); | ||
} | ||
|
||
/** | ||
* Prints an error messages to {@link #stderr stderr}. | ||
* | ||
* @param cause the cause of the error, if not {@code null} the {@link Throwable#printStackTrace(PrintStream)} | ||
* writes to {@link #stderr stderr} | ||
* @param msg the message to print | ||
*/ | ||
public static void printError(final Throwable cause, final String msg) { | ||
stderr.println(msg); | ||
if (cause != null) { | ||
cause.printStackTrace(stderr); | ||
} | ||
} | ||
|
||
/** | ||
* Prints an error messages to {@link #stderr stderr}. | ||
* | ||
* @param cause the cause of the error, if not {@code null} the {@link Throwable#printStackTrace(PrintStream)} | ||
* writes to {@link #stderr stderr} | ||
* @param format the {@link java.util.Formatter format} | ||
* @param args the arguments for the format | ||
*/ | ||
public static void printError(final Throwable cause, final String format, final Object... args) { | ||
stderr.printf(format, args); | ||
if (cause != null) { | ||
cause.printStackTrace(stderr); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters