-
Notifications
You must be signed in to change notification settings - Fork 816
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Increase logging around file removal events #3020
Conversation
fcb0f2d
to
94c54c9
Compare
94c54c9
to
bfcb375
Compare
/rebase |
To better see what is going on when and if files are removed by the client. See also: #260, #1433, #2913 Signed-off-by: Felix Weilbach <[email protected]>
bfcb375
to
b1983d7
Compare
AppImage file: Nextcloud-PR-3020-b1983d7d19a8258159909f975941eccb0d73e3c7-x86_64.AppImage |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Damn... somehow I had pending comments which didn't get submitted... :-/
@@ -89,13 +89,15 @@ bool PropagateLocalRemove::removeRecursively(const QString &path) | |||
|
|||
void PropagateLocalRemove::start() | |||
{ | |||
qCInfo(lcPropagateLocalRemove) << "Start propagate local remove job"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd let go that one to avoid double logging in the common case. If you don't get to the second one it's due to an abort anyway so it's as if the job was never started.
To better see what is going on when and if files are removed by the
client.
See also: #260, #1433, #2913