Skip to content
Snippets Groups Projects
Commit c37aaaf6 authored by buczekp's avatar buczekp
Browse files

[DMV-39] reverted changes in service.properties because of test expectations;...

[DMV-39] reverted changes in service.properties because of test expectations; minor: improved logging

SVN: 14628
parent 021ac3ee
Loading
......@@ -64,7 +64,7 @@ public class Compressor
FileUtilities.tryListFiles(directory, filter, new Log4jSimpleLogger(machineLog));
if (filesToCompressOrNull == null)
{
String errorMsg = String.format("Path '%s' is not a directory.\n", directory.getPath());
String errorMsg = String.format("Path '%s' is not a directory.", directory.getPath());
machineLog.error(errorMsg);
throw new EnvironmentFailureException(errorMsg);
}
......
......@@ -13,6 +13,6 @@ outgoing-target = targets/outgoing
#transformator-class = ch.systemsx.cisd.datamover.transformation.DummyTransformator
#transformator-class = ch.systemsx.cisd.datamover.transformation.TiffCompressorTransformator
quiet-period = 5
check-interval = 5
check-interval-internal = 5
#quiet-period = 5
#check-interval = 5
#check-interval-internal = 5
......@@ -295,7 +295,7 @@ public final class LocalProcessor implements IPathHandler, IRecoverableTimerTask
Status transformationStatus = transformatorOrNull.transform(path);
if (transformationStatus.isError())
{
notificationLog.error(String.format("FAILED_TRANSFORMATION '%s': ", path
notificationLog.error(String.format("FAILED_TRANSFORMATION '%s': %s", path
.getAbsolutePath(), transformationStatus.tryGetErrorMessage()));
return;
} else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment