dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #22986
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 11177: Minor
------------------------------------------------------------
revno: 11177
committer: Lars Helge Øverland <larshelge@xxxxxxxxx>
branch nick: dhis2
timestamp: Sun 2013-06-09 11:53:35 +0200
message:
Minor
modified:
dhis-2/dhis-web/dhis-web-importexport/src/main/java/org/hisp/dhis/importexport/action/util/ImportMetaDataTask.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-web/dhis-web-importexport/src/main/java/org/hisp/dhis/importexport/action/util/ImportMetaDataTask.java'
--- dhis-2/dhis-web/dhis-web-importexport/src/main/java/org/hisp/dhis/importexport/action/util/ImportMetaDataTask.java 2013-03-20 11:24:42 +0000
+++ dhis-2/dhis-web/dhis-web-importexport/src/main/java/org/hisp/dhis/importexport/action/util/ImportMetaDataTask.java 2013-06-09 09:53:35 +0000
@@ -82,9 +82,9 @@
{
metaData = JacksonUtils.fromJson( inputStream, MetaData.class );
}
- catch ( IOException e )
+ catch ( IOException ex )
{
- log.error( "(IOException) Unable to parse meta-data while reading input stream" );
+ log.error( "(IOException) Unable to parse meta-data while reading input stream", ex );
return;
}
}