aboutsummaryrefslogtreecommitdiff
path: root/src/org/traccar/processing/ComputedAttributesHandler.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/traccar/processing/ComputedAttributesHandler.java')
-rw-r--r--src/org/traccar/processing/ComputedAttributesHandler.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/org/traccar/processing/ComputedAttributesHandler.java b/src/org/traccar/processing/ComputedAttributesHandler.java
index d4090e709..c346661d3 100644
--- a/src/org/traccar/processing/ComputedAttributesHandler.java
+++ b/src/org/traccar/processing/ComputedAttributesHandler.java
@@ -80,7 +80,7 @@ public class ComputedAttributesHandler extends BaseDataHandler {
}
}
} catch (IllegalAccessException | InvocationTargetException error) {
- LOGGER.warn(null, error);
+ LOGGER.warn("Attribute reflection error", error);
}
}
}
@@ -101,7 +101,7 @@ public class ComputedAttributesHandler extends BaseDataHandler {
try {
result = computeAttribute(attribute, position);
} catch (JexlException error) {
- LOGGER.warn(null, error);
+ LOGGER.warn("Attribute computation error", error);
}
if (result != null) {
try {
@@ -118,7 +118,7 @@ public class ComputedAttributesHandler extends BaseDataHandler {
position.getAttributes().put(attribute.getAttribute(), result.toString());
}
} catch (ClassCastException error) {
- LOGGER.warn(null, error);
+ LOGGER.warn("Attribute cast error", error);
}
}
}