diff --git a/front/maintenance.php b/front/maintenance.php
index 37502984..280e1b38 100755
--- a/front/maintenance.php
+++ b/front/maintenance.php
@@ -424,7 +424,7 @@ $db->close();
diff --git a/front/php/templates/language/es_es.json b/front/php/templates/language/es_es.json
old mode 100644
new mode 100755
diff --git a/front/php/templates/language/ru_ru.json b/front/php/templates/language/ru_ru.json
old mode 100644
new mode 100755
diff --git a/server/device.py b/server/device.py
index c339a868..18c34baf 100755
--- a/server/device.py
+++ b/server/device.py
@@ -95,34 +95,34 @@ def print_scan_stats(db):
mylog('verbose', f'[Scan Stats] Disconnections.........: {stats[0]["disconnections"]}')
mylog('verbose', f'[Scan Stats] IP Changes.............: {stats[0]["ip_changes"]}')
- if str(stats[0]["new_devices"]) != '0':
- mylog('debug', f' ================ DEVICES table content ================')
- sql.execute('select * from Devices')
- rows = sql.fetchall()
- for row in rows:
- row_dict = dict(row)
- mylog('debug', f' {row_dict}')
-
- mylog('debug', f' ================ CurrentScan table content ================')
- sql.execute('select * from CurrentScan')
- rows = sql.fetchall()
- for row in rows:
- row_dict = dict(row)
- mylog('debug', f' {row_dict}')
-
- mylog('debug', f' ================ Events table content where eve_PendingAlertEmail = 1 ================')
- sql.execute('select * from Events where eve_PendingAlertEmail = 1')
- rows = sql.fetchall()
- for row in rows:
- row_dict = dict(row)
- mylog('debug', f' {row_dict}')
+ # if str(stats[0]["new_devices"]) != '0':
+ mylog('debug', f' ================ DEVICES table content ================')
+ sql.execute('select * from Devices')
+ rows = sql.fetchall()
+ for row in rows:
+ row_dict = dict(row)
+ mylog('debug', f' {row_dict}')
+
+ mylog('debug', f' ================ CurrentScan table content ================')
+ sql.execute('select * from CurrentScan')
+ rows = sql.fetchall()
+ for row in rows:
+ row_dict = dict(row)
+ mylog('debug', f' {row_dict}')
+
+ mylog('debug', f' ================ Events table content where eve_PendingAlertEmail = 1 ================')
+ sql.execute('select * from Events where eve_PendingAlertEmail = 1')
+ rows = sql.fetchall()
+ for row in rows:
+ row_dict = dict(row)
+ mylog('debug', f' {row_dict}')
- mylog('debug', f' ================ Events table COUNT ================')
- sql.execute('select count(*) from Events')
- rows = sql.fetchall()
- for row in rows:
- row_dict = dict(row)
- mylog('debug', f' {row_dict}')
+ mylog('debug', f' ================ Events table COUNT ================')
+ sql.execute('select count(*) from Events')
+ rows = sql.fetchall()
+ for row in rows:
+ row_dict = dict(row)
+ mylog('debug', f' {row_dict}')
mylog('verbose', '[Scan Stats] Scan Method Statistics:')