diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2013-08-13 01:44:10 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2013-08-13 01:44:10 +0100 |
commit | f32ddd200049d64172274839f6c5ff931a4c9cb4 (patch) | |
tree | eb0a31e95297ef8b0b55957e470189cd8f8967c2 /test/rspamd_rcl_test.c | |
parent | 409f5abe9ac2627c6e17cddb2cf0703960d6b5e5 (diff) | |
download | rspamd-f32ddd200049d64172274839f6c5ff931a4c9cb4.tar.gz rspamd-f32ddd200049d64172274839f6c5ff931a4c9cb4.zip |
Fixes to rcl parser found by tests.
Diffstat (limited to 'test/rspamd_rcl_test.c')
-rw-r--r-- | test/rspamd_rcl_test.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/rspamd_rcl_test.c b/test/rspamd_rcl_test.c index 827153077..0c338035f 100644 --- a/test/rspamd_rcl_test.c +++ b/test/rspamd_rcl_test.c @@ -72,7 +72,7 @@ rspamd_rcl_test_func (void) /* Test config emitting */ emitted = rspamd_cl_object_emit (obj, RSPAMD_CL_EMIT_CONFIG); g_assert (emitted != NULL); - msg_info ("got config output: %s", emitted); + msg_debug ("got config output: %s", emitted); parser2 = rspamd_cl_parser_new (); g_assert (parser2 != NULL); rspamd_cl_parser_add_chunk (parser2, emitted, strlen (emitted), &err); @@ -82,7 +82,7 @@ rspamd_rcl_test_func (void) /* Test json emitted */ emitted = rspamd_cl_object_emit (obj, RSPAMD_CL_EMIT_JSON); g_assert (emitted != NULL); - msg_info ("got json output: %s", emitted); + msg_debug ("got json output: %s", emitted); parser2 = rspamd_cl_parser_new (); g_assert (parser2 != NULL); rspamd_cl_parser_add_chunk (parser2, emitted, strlen (emitted), &err); @@ -92,7 +92,7 @@ rspamd_rcl_test_func (void) /* Compact json */ emitted = rspamd_cl_object_emit (obj, RSPAMD_CL_EMIT_JSON_COMPACT); g_assert (emitted != NULL); - msg_info ("got json compacted output: %s", emitted); + msg_debug ("got json compacted output: %s", emitted); parser2 = rspamd_cl_parser_new (); g_assert (parser2 != NULL); rspamd_cl_parser_add_chunk (parser2, emitted, strlen (emitted), &err); |