--- l2_test.c 2001/09/05 13:56:43 1.12
+++ l2_test.c 2001/09/06 11:56:15 1.13
@@ -132,7 +132,10 @@
if (l2_stream_formatter(st, 'k', formatter, NULL) != L2_OK)
die("failed to configure formatter for %%x");
- if (l2_stream_log(st, L2_LEVEL_PANIC, "Checking localhost %s %{myparm}k\n", "foo", 12345) != L2_OK)
+ if (l2_stream_formatter(st, 'S', l2_util_fmt_dump, NULL) != L2_OK)
+ die("failed to configure formatter for %%S");
+
+ if (l2_stream_log(st, L2_LEVEL_PANIC, "Checking localhost %s %{myparm}k <%{text}S><%{hex}S><%{base64}S>\n", "foo", 12345, "foo\1bar", 7, "foo\1bar", 7, "foo\1bar", 7) != L2_OK)
die("failed to log message to stream");
if (l2_stream_destroy(st) != L2_OK)
|