quiet up some debug that isn't really needed and only gives people concern :)

svn path=/trunk/KDE/kdelibs/; revision=1134913
This commit is contained in:
Aaron J. Seigo 2010-06-05 17:35:12 +00:00
parent fb07bcab0a
commit 1f216930ce
2 changed files with 3 additions and 4 deletions

View File

@ -186,7 +186,7 @@ Plasma::Animation *Animator::create(const QString &anim, QObject *parent)
if (!AnimationScriptEngine::isAnimationRegistered(anim)) {
const QString path = Theme::defaultTheme()->animationPath(anim);
if (path.isEmpty()) {
kError() << "************ failed to find script file for animation" << anim;
//kError() << "************ failed to find script file for animation" << anim;
return 0;
}
@ -195,7 +195,7 @@ Plasma::Animation *Animator::create(const QString &anim, QObject *parent)
}
if (!AnimationScriptEngine::isAnimationRegistered(anim)) {
kError() << "successfully loaded script file" << path << ", but did not get animation object for" << anim;
//kError() << "successfully loaded script file" << path << ", but did not get animation object for" << anim;
return 0;
}
}

View File

@ -638,8 +638,7 @@ QString Theme::animationPath(const QString &name) const
{
const QString path = d->animationMapping.value(name);
if (path.isEmpty()) {
kError() << "****** FAILED TO FIND IN MAPPING!";
//kError() << "****** FAILED TO FIND IN MAPPING!";
return path;
}