Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for toPsOrDef (0.04 sec)

  1. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/logging/SystemLogger.java

            this(out, null);
        }
    
        public SystemLogger(@Nullable OutputStream out, @Nullable Level threshold) {
            this.out = new PrintWriter(toPsOrDef(out, System.err), true);
            this.threshold = Objects.requireNonNullElse(threshold, Level.INFO);
        }
    
        private PrintStream toPsOrDef(OutputStream outputStream, PrintStream def) {
            if (outputStream == null) {
                return def;
            }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Feb 08 16:25:25 UTC 2025
    - 2.4K bytes
    - Viewed (0)
Back to top