From 3412cb086591cb00d802c00e96851392619b576b Mon Sep 17 00:00:00 2001 From: cdfrey Date: Thu, 25 Oct 2007 22:01:51 +0000 Subject: [PATCH] - added more logging to the opensync plugin, logging the ToBarry conversion results --- opensync-plugin/src/vevent.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/opensync-plugin/src/vevent.cc b/opensync-plugin/src/vevent.cc index f91c9bf9..3a31de3d 100644 --- a/opensync-plugin/src/vevent.cc +++ b/opensync-plugin/src/vevent.cc @@ -394,7 +394,9 @@ const Barry::Calendar& vCalendar::ToBarry(const char *vcal, uint32_t RecordId) trace.logf("ERROR: no TRIGGER found in calendar entry, assuming notification time as 15 minutes before start."); } - + std::ostringstream oss; + m_BarryCal.Dump(oss); + trace.logf("ToBarry, resulting Barry record: %s", oss.str().c_str()); return m_BarryCal; } -- 2.11.4.GIT