Merge "Omaha #3549 improve acarssounding error message" into omaha_14.4.1

Former-commit-id: 245c304d6c [formerly 78550587d8] [formerly 1ebcacee88] [formerly 245c304d6c [formerly 78550587d8] [formerly 1ebcacee88] [formerly 09a044b9af [formerly 1ebcacee88 [formerly 4d0cb95dfed73beeb51e15d753b76c315877d2ea]]]]
Former-commit-id: 09a044b9af
Former-commit-id: b12762b5eb [formerly e9114850ac] [formerly 1d1c404038e0117789669999bd6ba53869c133fd [formerly 7fa3a9b834]]
Former-commit-id: 242a11e31e23ff27b218ac4ac2badfba5c747ab4 [formerly 33b9f58bc3]
Former-commit-id: 76be4ae710
This commit is contained in:
Richard Peter 2014-09-02 12:32:39 -05:00 committed by Gerrit Code Review
commit 29ec2faff6

View file

@ -30,6 +30,8 @@ import com.raytheon.uf.common.time.util.TimeUtil;
* not discard sounding data * not discard sounding data
* based on altitude here * based on altitude here
* Aug 18, 2014 3530 bclement removed TimeTools usage and dead code * Aug 18, 2014 3530 bclement removed TimeTools usage and dead code
* Sep 02, 2014 3549 njensen Improve error message
*
* </pre> * </pre>
*/ */
@ -275,8 +277,9 @@ public final class ACARSSoundingTools {
try { try {
writer.close(); writer.close();
} catch (IOException ioe) { } catch (IOException ioe) {
logger.error("Error closing " logger.error(
+ tailNumberFile.getName()); "Error closing " + tailNumberFile.getName(),
ioe);
} }
} }
} }