From 345b755e6fa26ce48ead75327e8917ecc4260e64 Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Mon, 24 Apr 2017 15:16:16 -0700 Subject: [PATCH] Improved warnings. --- .../erik/kobalt/plugin/propertyfile/Utils.kt | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/src/main/kotlin/net/thauvin/erik/kobalt/plugin/propertyfile/Utils.kt b/src/main/kotlin/net/thauvin/erik/kobalt/plugin/propertyfile/Utils.kt index 0921ada..b69aa6a 100644 --- a/src/main/kotlin/net/thauvin/erik/kobalt/plugin/propertyfile/Utils.kt +++ b/src/main/kotlin/net/thauvin/erik/kobalt/plugin/propertyfile/Utils.kt @@ -35,13 +35,6 @@ import com.beust.kobalt.misc.warn import java.text.* import java.util.* -/** - * The Utils class. - * - * @author Erik C. Thauvin - * @created 2017-04-18 - * @since 1.0 - */ class Utils { companion object { private val calendarFields = mapOf( @@ -68,7 +61,7 @@ class Utils { try { cal.time = fmt.parse(value) } catch (pe: ParseException) { - warn("Date parse exception for: ${entry.key}", pe) + warn("Date parse exception for: ${entry.key} --> ${pe.message}", pe) success = false } } @@ -82,7 +75,7 @@ class Utils { offset *= -1 } } catch (nfe: NumberFormatException) { - warn("Non-integer value for: ${entry.key}") + warn("Non-integer value for: ${entry.key} --> ${nfe.message}", nfe) success = false } @@ -117,10 +110,10 @@ class Utils { p.setProperty(entry.key, fmt.format(intValue)) } catch (nfe: NumberFormatException) { - warn("Number format exception for: ${entry.key}", nfe) + warn("Number format exception for: ${entry.key} --> ${nfe.message}", nfe) success = false } catch (pe: ParseException) { - warn("Number parsing exception for: ${entry.key}", pe) + warn("Number parsing exception for: ${entry.key} --> ${pe.message}", pe) success = false }