aboutsummaryrefslogtreecommitdiff
path: root/libsylph/filter.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2010-06-02 06:24:25 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2010-06-02 06:24:25 +0000
commitd148add1c0046a323e43b8a8c73846c31fc30878 (patch)
treea56b5178e69bd16e08365ea882a54840c8be3893 /libsylph/filter.c
parent54bbccdbd0e29868a7c8dd304785dfe9d56d4812 (diff)
modified debug log for filter.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@2559 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'libsylph/filter.c')
-rw-r--r--libsylph/filter.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libsylph/filter.c b/libsylph/filter.c
index efbcf130..beff85bf 100644
--- a/libsylph/filter.c
+++ b/libsylph/filter.c
@@ -476,10 +476,10 @@ static gboolean filter_match_cond(FilterCond *cond, MsgInfo *msginfo,
debug_print("filter-log: %s: CMD_TEST, str_value: [%s]%s\n", G_STRFUNC, sv, nm);
break;
case FLT_COND_SIZE_GREATER:
- debug_print("filter-log: %s: SIZE_GREATER: %u > %d (KB)%s\n", G_STRFUNC, msginfo->size, cond->int_value, nm);
+ debug_print("filter-log: %s: SIZE_GREATER: %u %s %d (KB)%s\n", G_STRFUNC, msginfo->size, not_match ? "<=" : ">", cond->int_value, nm);
break;
case FLT_COND_AGE_GREATER:
- debug_print("filter-log: %s: AGE_GREATER: %ld > %d (day)%s\n", G_STRFUNC, time(NULL) - msginfo->date_t, cond->int_value, nm);
+ debug_print("filter-log: %s: AGE_GREATER: %ld (sec) %s %d (day)%s\n", G_STRFUNC, time(NULL) - msginfo->date_t, not_match ? "<=" : ">", cond->int_value, nm);
break;
case FLT_COND_UNREAD:
debug_print("filter-log: %s: UNREAD%s\n", G_STRFUNC, nm);