Skip to content
Snippets Groups Projects
Commit d900ae5a authored by Raphael GIRARDOT's avatar Raphael GIRARDOT
Browse files

log message bug correction

parent 5d9d6dd1
Branches
Tags
No related merge requests found
......@@ -16,6 +16,7 @@ import fr.soleil.lib.project.ObjectUtils;
import fr.soleil.lib.project.date.IDateConstants;
import fr.soleil.lib.project.log.Level;
import fr.soleil.lib.project.log.LogData;
import fr.soleil.lib.project.math.ArrayUtils;
/**
* An {@link AppenderBase} that will redirect log messages to a {@link LogViewer}.
......@@ -106,7 +107,7 @@ public class LogAppender extends AppenderBase<ILoggingEvent> implements IDateCon
builder.deleteCharAt(builder.length() - 1);
builder.append(DELIM);
} else {
builder.append(array[argIndex++]);
builder.append(ArrayUtils.toString(array[argIndex++]));
}
index = message.indexOf(DELIM, index + 1);
strIndex += DELIM.length();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment