From 8056505aa046e061c52a8d218e3369caccbc69fb Mon Sep 17 00:00:00 2001 From: "Aaron J. Seigo" Date: Fri, 16 Jan 2009 00:32:58 +0000 Subject: [PATCH] more verbosity is helpful in debugging these things svn path=/trunk/KDE/kdelibs/; revision=911726 --- version.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/version.cpp b/version.cpp index 7574da80c..ffb10166c 100644 --- a/version.cpp +++ b/version.cpp @@ -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; }