Subversion Repository Public Repository

litesoft

Diff Revisions 821 vs 822 for /trunk/Java/core/Anywhere/src/org/litesoft/core/util/nonpublic/LLLoggingUnexpectedProblemHandler.java

Diff revisions: vs.
  @@ -1,7 +1,7 @@
1 1 // This Source Code is in the Public Domain per: http://litesoft.org/License.txt
2 2 package org.litesoft.core.util.nonpublic;
3 3
4 - import org.litesoft.core.util.*;
4 + import org.litesoft.core.typeutils.*;
5 5
6 6 public class LLLoggingUnexpectedProblemHandler extends LLLoggingUnexpectedExceptionHandler implements LLUnexpectedProblemHandler
7 7
  @@ -10,7 +10,7 @@
10 10 {
11 11 if ( LOGGER.error.isEnabled() )
12 12 {
13 - LOGGER.error.log( pException, "Unexpected Problem from '", pFrom, "': ", UtilsCommon.toString( pProblemValues, "," ) );
13 + LOGGER.error.log( pException, "Unexpected Problem from '", pFrom, "': ", Objects.toString( pProblemValues, "," ) );
14 14 }
15 15 }
16 16 }