diff --git a/Knot.files b/Knot.files
index 1e428bcf6f3bf93a4942cf4e1e9f8c105fca99ab..17c2571483af00a1725f80cbcd582a80ddf71ef1 100644
--- a/Knot.files
+++ b/Knot.files
@@ -252,6 +252,8 @@ src/knot/events/handlers/load.c
 src/knot/events/handlers/notify.c
 src/knot/events/handlers/refresh.c
 src/knot/events/handlers/update.c
+src/knot/events/log.c
+src/knot/events/log.h
 src/knot/events/replan.c
 src/knot/events/replan.h
 src/knot/modules/dnsproxy.c
diff --git a/src/Makefile.am b/src/Makefile.am
index c482c9c6b9fe0eedf1e041547474c6dc6253b042..887e38f14bcad95454bf3aad8222031670bb6042 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -273,6 +273,8 @@ libknotd_la_SOURCES =				\
 	knot/events/handlers/notify.c		\
 	knot/events/handlers/refresh.c		\
 	knot/events/handlers/update.c		\
+	knot/events/log.c			\
+	knot/events/log.h			\
 	knot/events/replan.c			\
 	knot/events/replan.h			\
 	knot/modules/dnsproxy.c			\
diff --git a/src/knot/events/log.c b/src/knot/events/log.c
new file mode 100644
index 0000000000000000000000000000000000000000..41f6a512dd9a2279aa20d477c03cf7c63ef97c7e
--- /dev/null
+++ b/src/knot/events/log.c
@@ -0,0 +1,27 @@
+/*  Copyright (C) 2016 CZ.NIC, z.s.p.o. <knot-dns@labs.nic.cz>
+
+    This program is free software: you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation, either version 3 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include "knot/events/log.h"
+#include "knot/common/log.h"
+
+void log_dnssec_next(const knot_dname_t *zone, time_t refresh_at)
+{
+	char time_str[64] = { 0 };
+	struct tm time_gm = { 0 };
+	localtime_r(&refresh_at, &time_gm);
+	strftime(time_str, sizeof(time_str), KNOT_LOG_TIME_FORMAT, &time_gm);
+	log_zone_info(zone, "DNSSEC, next signing on %s", time_str);
+}
diff --git a/src/knot/events/log.h b/src/knot/events/log.h
new file mode 100644
index 0000000000000000000000000000000000000000..536a1e299cebcf02caf57e617b40666958c87be5
--- /dev/null
+++ b/src/knot/events/log.h
@@ -0,0 +1,22 @@
+/*  Copyright (C) 2016 CZ.NIC, z.s.p.o. <knot-dns@labs.nic.cz>
+
+    This program is free software: you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation, either version 3 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#pragma once
+
+#include <time.h>
+#include "libknot/dname.h"
+
+void log_dnssec_next(const knot_dname_t *zone, time_t refresh_at);