Skip to content
Snippets Groups Projects
Commit 1768fed4 authored by ribeaudc's avatar ribeaudc
Browse files

fix: - 'String.format' does not get its argument.

SVN: 7526
parent 1bf9170c
No related branches found
No related tags found
No related merge requests found
......@@ -53,8 +53,10 @@ final class DataMoverTerminable extends CompoundTerminable
return super.terminate(terminable);
} catch (final Exception e)
{
final DataMoverProcess process = (DataMoverProcess) terminable;
operationLog.warn(String
.format("Terminating Datamover process '%s' threw an exception."), e);
.format("Terminating Datamover process '%s' threw an exception.", process
.getTaskName()), e);
return false;
}
}
......
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