Skip to content
Snippets Groups Projects
Commit fb0dc4c6 authored by cramakri's avatar cramakri
Browse files

BIS-105 SP-151 : Added some logging when a file is not added to the faulty_paths

SVN: 26120
parent 3fa8d593
No related branches found
No related tags found
No related merge requests found
......@@ -70,7 +70,7 @@ public final class FaultyPathDirectoryScanningHandler implements IDirectoryScann
{
this(faultyPathDirectory, stopSignaler, null);
}
public FaultyPathDirectoryScanningHandler(final File faultyPathDirectory,
final IStopSignaler stopSignaler, IFaultyPathDirectoryScanningHandlerDelegate delegate)
{
......@@ -221,6 +221,10 @@ public final class FaultyPathDirectoryScanningHandler implements IDirectoryScann
if (delegate != null
&& delegate.shouldNotAddToFaultyPathsOrNull(scannedStore.asFile(storeItem)))
{
operationLog
.info("File "
+ storeItem
+ " not written to faulty paths. It will be reprocessed during the next iteration.");
return Status.OK;
}
......
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