summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Zeller <luz@synthesis.ch>2010-05-07 13:35:23 +0200
committerLukas Zeller <luz@synthesis.ch>2010-05-07 13:51:05 +0200
commitde23ed5891ee91970e826c6bd9d6e6a0ec574b8a (patch)
tree5d4833ce8b188b0bc4b34fb77c73aecb3fda5bf4
parent2281eb8775b5982d47654d231837cb7afe516f0e (diff)
VTIMEZONE conversion: added logging so we can see what's happening (RRULE parsing)
-rw-r--r--src/sysync/mimedirprofile.cpp2
-rwxr-xr-xsrc/sysync/scriptcontext.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/sysync/mimedirprofile.cpp b/src/sysync/mimedirprofile.cpp
index e8d1a5b..c351ca0 100644
--- a/src/sysync/mimedirprofile.cpp
+++ b/src/sysync/mimedirprofile.cpp
@@ -4159,7 +4159,7 @@ bool TMimeDirProfileHandler::parseLevels(
timecontext_t tctx;
// identify or add this in the session zones
string tzid;
- if (VTIMEZONEtoInternal(s2.c_str(), tctx, getSessionZones(), NULL, &tzid)) {
+ if (VTIMEZONEtoInternal(s2.c_str(), tctx, getSessionZones(), getDbgLogger(), &tzid)) {
// time zone identified
#ifdef SYDEBUG
string tzname;
diff --git a/src/sysync/scriptcontext.cpp b/src/sysync/scriptcontext.cpp
index bacc6e7..bdbfcee 100755
--- a/src/sysync/scriptcontext.cpp
+++ b/src/sysync/scriptcontext.cpp
@@ -335,7 +335,7 @@ public:
}
else if (strucmp(str.c_str(),"BEGIN:VTIMEZONE",15)==0) {
// is a vTimezone, get it
- if (!VTIMEZONEtoInternal(str.c_str(), tctx, aFuncContextP->getSession()->getSessionZones()))
+ if (!VTIMEZONEtoInternal(str.c_str(), tctx, aFuncContextP->getSession()->getSessionZones(),aFuncContextP->getSession()->getDbgLogger()))
tctx = TCTX_UNKNOWN;
}
else {