dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #17810
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 7236: Improved logging on datavalue import
------------------------------------------------------------
revno: 7236
committer: Lars Helge Overland <larshelge@xxxxxxxxx>
branch nick: dhis2
timestamp: Thu 2012-06-07 15:03:34 +0200
message:
Improved logging on datavalue import
modified:
dhis-2/dhis-dxf2/src/main/java/org/hisp/dhis/dxf2/datavalueset/DefaultDataValueSetService.java
--
lp:dhis2
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk
Your team DHIS 2 developers is subscribed to branch lp:dhis2.
To unsubscribe from this branch go to https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription
=== modified file 'dhis-2/dhis-dxf2/src/main/java/org/hisp/dhis/dxf2/datavalueset/DefaultDataValueSetService.java'
--- dhis-2/dhis-dxf2/src/main/java/org/hisp/dhis/dxf2/datavalueset/DefaultDataValueSetService.java 2012-06-03 15:04:33 +0000
+++ dhis-2/dhis-dxf2/src/main/java/org/hisp/dhis/dxf2/datavalueset/DefaultDataValueSetService.java 2012-06-07 13:03:34 +0000
@@ -76,6 +76,7 @@
import org.hisp.dhis.scheduling.TaskId;
import org.hisp.dhis.system.notification.Notifier;
import org.hisp.dhis.system.util.DateUtils;
+import org.hisp.dhis.system.util.DebugUtils;
import org.hisp.dhis.user.CurrentUserService;
import org.springframework.beans.factory.annotation.Autowired;
@@ -191,7 +192,7 @@
}
catch ( RuntimeException ex )
{
- log.error( ex );
+ log.error( DebugUtils.getStackTrace( ex ) );
notifier.notify( id, DATAVALUE_IMPORT, ERROR, "Unfortunately the process failed, check the logs", true );
return new ImportSummary( ImportStatus.ERROR, "The import process failed: " + ex.getMessage() );
}
@@ -206,7 +207,7 @@
}
catch ( RuntimeException ex )
{
- log.error( ex );
+ log.error( DebugUtils.getStackTrace( ex ) );
notifier.clear( id, DATAVALUE_IMPORT ).notify( id, DATAVALUE_IMPORT, ERROR, "Unfortunately the process failed, check the logs", true );
return new ImportSummary( ImportStatus.ERROR, "The import process failed: " + ex.getMessage() );
}