mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-26 15:06:08 +03:00
Log fallback result
This commit is contained in:
parent
acd83a2998
commit
48f4c1e9e1
1 changed files with 2 additions and 2 deletions
|
@ -63,9 +63,9 @@ time_t FileSystem::getModTime(const QString &filename)
|
||||||
&& (stat.modtime != 0)) {
|
&& (stat.modtime != 0)) {
|
||||||
result = stat.modtime;
|
result = stat.modtime;
|
||||||
} else {
|
} else {
|
||||||
qCWarning(lcFileSystem) << "Could not get modification time for" << filename
|
|
||||||
<< "with csync, using QFileInfo";
|
|
||||||
result = Utility::qDateTimeToTime_t(QFileInfo(filename).lastModified());
|
result = Utility::qDateTimeToTime_t(QFileInfo(filename).lastModified());
|
||||||
|
qCWarning(lcFileSystem) << "Could not get modification time for" << filename
|
||||||
|
<< "with csync, using QFileInfo:" << result;
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue