Class LogUtil

java.lang.Object
org.apache.juli.LogUtil

public class LogUtil extends Object
  • Method Details

    • escape

      public static String escape(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