From 1f216930ce6e2f52fe34dc631d37ba9dbb6db8b6 Mon Sep 17 00:00:00 2001 From: "Aaron J. Seigo" Date: Sat, 5 Jun 2010 17:35:12 +0000 Subject: [PATCH] quiet up some debug that isn't really needed and only gives people concern :) svn path=/trunk/KDE/kdelibs/; revision=1134913 --- animator.cpp | 4 ++-- theme.cpp | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/animator.cpp b/animator.cpp index cde22e404..c199bc06a 100644 --- a/animator.cpp +++ b/animator.cpp @@ -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; } } diff --git a/theme.cpp b/theme.cpp index 348f083fb..88a7ea234 100644 --- a/theme.cpp +++ b/theme.cpp @@ -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; }