Other: Add more extensive logging

This commit is contained in:
James Houlahan
2022-11-03 23:02:34 +01:00
parent 8bb60afabd
commit c548ba85fe
24 changed files with 405 additions and 81 deletions

View File

@ -120,6 +120,19 @@ const (
SplitMode
)
func (mode AddressMode) String() string {
switch mode {
case CombinedMode:
return "combined"
case SplitMode:
return "split"
default:
return "unknown"
}
}
type SyncStatus struct {
HasLabels bool
HasMessages bool