projects
/
privoxy.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6506d05
)
enable_client_specific_tag(): Log the ttl when adding client-specific tags
author
Fabian Keil
<fk@fabiankeil.de>
Sun, 27 Mar 2016 16:54:33 +0000
(16:54 +0000)
committer
Fabian Keil
<fk@fabiankeil.de>
Sun, 27 Mar 2016 16:54:33 +0000
(16:54 +0000)
client-tags.c
patch
|
blob
|
history
diff --git
a/client-tags.c
b/client-tags.c
index
e04345c
..
165f820
100644
(file)
--- a/
client-tags.c
+++ b/
client-tags.c
@@
-491,7
+491,8
@@
jb_err enable_client_specific_tag(struct client_state *csp,
{
add_tag_for_client(csp->ip_addr_str, tag_name, time_to_live);
log_error(LOG_LEVEL_INFO,
- "Tag '%s' enabled for client '%s'", tag->name, csp->ip_addr_str);
+ "Tag '%s' enabled for client '%s'. TTL: %d.",
+ tag->name, csp->ip_addr_str, time_to_live);
}
privoxy_mutex_unlock(&client_tags_mutex);