cmd/syncthing: Rename event LocalDiskUpdated -> LocalChangeDetected

I think this better reflects what it means. Also tweaks the verbose
format to be more like our other things and lightly refactors the code
to not have the boolean and include the folder in the event.

GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3121
This commit is contained in:
Jakob Borg
2016-05-19 07:01:43 +00:00
committed by Audrius Butkevicius
parent 86ca58e2a9
commit 1dbc310c9b
4 changed files with 23 additions and 20 deletions

View File

@@ -27,7 +27,7 @@ const (
DeviceRejected
DevicePaused
DeviceResumed
LocalDiskUpdated
LocalChangeDetected
LocalIndexUpdated
RemoteIndexUpdated
ItemStarted
@@ -62,8 +62,8 @@ func (t EventType) String() string {
return "DeviceDisconnected"
case DeviceRejected:
return "DeviceRejected"
case LocalDiskUpdated:
return "LocalDiskUpdated"
case LocalChangeDetected:
return "LocalChangeDetected"
case LocalIndexUpdated:
return "LocalIndexUpdated"
case RemoteIndexUpdated: