mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-22 21:15:55 +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)) {
|
||||
result = stat.modtime;
|
||||
} else {
|
||||
qCWarning(lcFileSystem) << "Could not get modification time for" << filename
|
||||
<< "with csync, using QFileInfo";
|
||||
result = Utility::qDateTimeToTime_t(QFileInfo(filename).lastModified());
|
||||
qCWarning(lcFileSystem) << "Could not get modification time for" << filename
|
||||
<< "with csync, using QFileInfo:" << result;
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue