mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-12 14:42:31 -05:00
Improve a few debug logger messages.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23407 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
fecac647d8
commit
aca1d8b50b
1 changed files with 3 additions and 3 deletions
|
|
@ -101,7 +101,7 @@ QString resolvePathCase(QString path)
|
|||
else
|
||||
return QString("");
|
||||
}
|
||||
qDebug() << __func__ << path << "->" << realpath;
|
||||
qDebug() << "[Utils] resolving path" << path << "->" << realpath;
|
||||
return realpath;
|
||||
}
|
||||
|
||||
|
|
@ -143,7 +143,7 @@ QString findExecutable(QString name)
|
|||
#elif defined(Q_OS_WIN)
|
||||
QStringList path = QString(getenv("PATH")).split(";", QString::SkipEmptyParts);
|
||||
#endif
|
||||
qDebug() << path;
|
||||
qDebug() << "[Utils] system path:" << path;
|
||||
for(int i = 0; i < path.size(); i++)
|
||||
{
|
||||
QString executable = QDir::fromNativeSeparators(path.at(i)) + "/" + name;
|
||||
|
|
@ -152,7 +152,7 @@ QString findExecutable(QString name)
|
|||
QStringList ex = executable.split("\"", QString::SkipEmptyParts);
|
||||
executable = ex.join("");
|
||||
#endif
|
||||
qDebug() << executable;
|
||||
qDebug() << "[Utils] executable:" << executable;
|
||||
if(QFileInfo(executable).isExecutable())
|
||||
{
|
||||
return QDir::toNativeSeparators(executable);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue