mirror of
https://gitlab.com/MrFry/mrfrys-node-server
synced 2025-04-01 20:24:18 +02:00
nolog ip ignoring empty lines in file, fixing checking
This commit is contained in:
parent
b7dc475cd4
commit
34cd2f25d6
3 changed files with 6 additions and 3 deletions
|
@ -1 +1 @@
|
||||||
Subproject commit 13de491da0290def7b357c7dafc12f22bfb77276
|
Subproject commit fe74436ab119a31fdb35f7a3bbae50a572b0fb21
|
|
@ -79,7 +79,7 @@ function LogReq (req, toFile, sc) {
|
||||||
let ip = req.headers['cf-connecting-ip'] || req.connection.remoteAddress
|
let ip = req.headers['cf-connecting-ip'] || req.connection.remoteAddress
|
||||||
|
|
||||||
let nolog = noLogips.some((x) => {
|
let nolog = noLogips.some((x) => {
|
||||||
return x.includes(ip)
|
return ip.includes(x)
|
||||||
})
|
})
|
||||||
if (nolog) {
|
if (nolog) {
|
||||||
return
|
return
|
||||||
|
@ -118,6 +118,9 @@ function parseNoLogFile (newData) {
|
||||||
if (noLogips[noLogips.length - 1] === '') {
|
if (noLogips[noLogips.length - 1] === '') {
|
||||||
noLogips.pop()
|
noLogips.pop()
|
||||||
}
|
}
|
||||||
|
noLogips = noLogips.filter((x) => {
|
||||||
|
return x !== ''
|
||||||
|
})
|
||||||
Log('\tNo Log IP-s changed: ' + noLogips.join(', '))
|
Log('\tNo Log IP-s changed: ' + noLogips.join(', '))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 100ca7750d88400b227c9e1592300c4d1ea7db5c
|
Subproject commit 0cfd9cfda377ff8917df50e68f105ec43f5e9311
|
Loading…
Add table
Add a link
Reference in a new issue