Roxen.git/
server/
base_server/
configuration.pike
Branch:
Tag:
Non-build tags
All tags
No tags
1998-11-26
1998-11-26 19:37:57 by Henrik Grubbström (Grubba) <grubba@grubba.org>
097690115b43e27a2381877d34fa98d8dd3331ad (
5
lines) (+
3
/-
2
)
[
Show
|
Annotate
]
Branch:
5.2
Made log() more paranoid.
Rev: server/base_server/configuration.pike:1.169
1:
-
string cvs_version = "$Id: configuration.pike,v 1.
168
1998/11/
22
17
:
06
:
51
per
Exp $";
+
string cvs_version = "$Id: configuration.pike,v 1.
169
1998/11/
26
19
:
37
:
57
grubba
Exp $";
#include <module.h> #include <roxen.h>
752:
foreach(logger_modules(request_id), f) // Call all logging functions if(f(request_id,file))return;
-
if(!log_function) return;// No file is open for logging.
+
if(!log_function
|| !request_id
) return;// No file is open for logging.
if(QUERY(NoLog) && _match(request_id->remoteaddr, QUERY(NoLog)))