Subversion Repository Public Repository

litesoft

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

Diff revisions: vs.
  @@ -3,16 +3,14 @@
3 3
4 4 import org.litesoft.core.util.*;
5 5
6 - public class LLLoggingUnexpectedProblemHandler extends LLLoggingUnexpectedExceptionHandler
7 - implements LLUnexpectedProblemHandler
6 + public class LLLoggingUnexpectedProblemHandler extends LLLoggingUnexpectedExceptionHandler implements LLUnexpectedProblemHandler
8 7
9 8 {
10 - public final void LLhandleNonNull( String pFrom, String pProblemCode, String[] pProblemValues,
11 - Throwable pException )
9 + public final void LLhandleNonNull( String pFrom, String pProblemCode, String[] pProblemValues, Throwable pException )
12 10 {
13 11 if ( LOGGER.error.isEnabled() )
14 12 {
15 - LOGGER.error.log( pException, "Unexpected Problem from '", pFrom, "': ", UtilsCommon.toString( pProblemValues, ",") );
13 + LOGGER.error.log( pException, "Unexpected Problem from '", pFrom, "': ", UtilsCommon.toString( pProblemValues, "," ) );
16 14 }
17 15 }
18 16 }