more verbosity is helpful in debugging these things

svn path=/trunk/KDE/kdelibs/; revision=911726
This commit is contained in:
Aaron J. Seigo 2009-01-16 00:32:58 +00:00
parent 2b579e6d48
commit 8056505aa0

View File

@ -55,7 +55,9 @@ bool isPluginVersionCompatible(unsigned int version)
const quint32 maxVersion = PLASMA_MAKE_VERSION(PLASMA_VERSION_MAJOR, PLASMA_VERSION_MINOR, 60);
if (version < minVersion || version > maxVersion) {
kDebug() << "plugin is compiled against incompatible Plasma version " << version;
kDebug() << "plugin is compiled against incompatible Plasma version " << version
<< "This build is compatible with" << PLASMA_VERSION_MAJOR << ".0.0 (" << minVersion
<< ") to" << PLASMA_VERSION_STRING << "(" << maxVersion << ")";
return false;
}