Skip to content
Snippets Groups Projects
Commit aaca0793 authored by tpylak's avatar tpylak
Browse files

minor: add printing stack trace for error handling in sample-dataset dropbox

SVN: 19193
parent 65f13459
No related branches found
No related tags found
No related merge requests found
...@@ -71,6 +71,7 @@ class SampleAndDataSetFolderProcessor extends AbstractSampleAndDataSetProcessor ...@@ -71,6 +71,7 @@ class SampleAndDataSetFolderProcessor extends AbstractSampleAndDataSetProcessor
controlFileProcessor.register(); controlFileProcessor.register();
} catch (UserFailureException e) } catch (UserFailureException e)
{ {
e.printStackTrace();
errorMap.put(controlFile, e); errorMap.put(controlFile, e);
} }
} }
......
...@@ -145,6 +145,7 @@ public class SampleAndDataSetRegistrationHandler implements IDataSetHandlerWithM ...@@ -145,6 +145,7 @@ public class SampleAndDataSetRegistrationHandler implements IDataSetHandlerWithM
folderProcessor.register(); folderProcessor.register();
} catch (Exception ex) } catch (Exception ex)
{ {
ex.printStackTrace();
operationLog.error("Could not register samples / data sets in ", ex); operationLog.error("Could not register samples / data sets in ", ex);
throw new CheckedExceptionTunnel(ex); throw new CheckedExceptionTunnel(ex);
} finally } finally
......
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