aboutsummaryrefslogtreecommitdiff
path: root/src/org/traccar/notification/NotificationNull.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/traccar/notification/NotificationNull.java')
-rw-r--r--src/org/traccar/notification/NotificationNull.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/org/traccar/notification/NotificationNull.java b/src/org/traccar/notification/NotificationNull.java
index afe160561..fd7950a80 100644
--- a/src/org/traccar/notification/NotificationNull.java
+++ b/src/org/traccar/notification/NotificationNull.java
@@ -16,6 +16,7 @@
*/
package org.traccar.notification;
+import org.traccar.helper.Log;
import org.traccar.model.Event;
import org.traccar.model.Position;
@@ -23,9 +24,11 @@ public final class NotificationNull extends Notificator {
@Override
public void sendAsync(long userId, Event event, Position position) {
+ Log.warning("You are using null notificatior, please check your configuration, notification not sent");
}
@Override
public void sendSync(long userId, Event event, Position position) {
+ Log.warning("You are using null notificatior, please check your configuration, notification not sent");
}
}