Package org.apache.juli
Class LogUtil
- java.lang.Object
-
- org.apache.juli.LogUtil
-
public class LogUtil extends java.lang.Object
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.lang.Stringescape(java.lang.String input)Escape a string so it can be displayed in a readable format.
-
-
-
Method Detail
-
escape
public static java.lang.String escape(java.lang.String input)
Escape a string so it can be displayed in a readable format. Characters that may not be printable in some/all of the contexts in which log messages will be viewed will be escaped using Java \\uNNNN escaping.All control characters are escaped apart from horizontal tab (\\u0009), new line (\\u000a) and carriage return (\\u000d).
- Parameters:
input- The string to escape- Returns:
- The escaped form of the input string
-
-