ソースを参照

edit blacklist debug message

CauseFX 5 年 前
コミット
14759615f5
1 ファイル変更1 行追加1 行削除
  1. 1 1
      api/classes/organizr.class.php

+ 1 - 1
api/classes/organizr.class.php

@@ -188,7 +188,7 @@ class Organizr
 			$currentIP = $this->userIP();
 			if ($this->config['blacklisted'] !== '') {
 				if (in_array($currentIP, $this->arrayIP($this->config['blacklisted']))) {
-					$this->debug('User was sent to blackhole');
+					$this->debug('User was sent to blackhole - Blacklisted IPs: ' . $this->config['blacklisted']);
 					die($this->config['blacklistedMessage']);
 				}
 			}