Removed unnecessary debug messages.

git-svn-id: http://yate.null.ro/svn/yate/trunk@5823 acf43c95-373e-0410-b603-e72c3f656dc1
This commit is contained in:
andrei 2014-04-17 07:40:37 +00:00
parent e13103a680
commit 11f9a6c4d2
1 changed files with 1 additions and 4 deletions

View File

@ -695,7 +695,6 @@ void CustomTimer::process(const String& value)
extractUsec(value);
return;
}
Debug(DebugWarn,"Requested to process: %s",value.c_str());
String tmp = value;
int count = 4;
// YYYY or YY the year
@ -705,11 +704,9 @@ void CustomTimer::process(const String& value)
if (i >= 0)
count = 2;
}
if (i >= 0) {
Debug(DebugNote," i = %d count = %d",i,count);
if (i >= 0)
tmp = tmp.substr(0,i) + ((count == 2) ? YSTRING("%y") : YSTRING("%Y")) +
tmp.substr(i + count);
}
// MM month
i = tmp.find(YSTRING("MM"));
if (i >= 0)