aboutsummaryrefslogtreecommitdiff
path: root/service/logging.go
diff options
context:
space:
mode:
Diffstat (limited to 'service/logging.go')
-rw-r--r--service/logging.go16
1 files changed, 16 insertions, 0 deletions
diff --git a/service/logging.go b/service/logging.go
index 3d2baba..f26abaf 100644
--- a/service/logging.go
+++ b/service/logging.go
@@ -212,3 +212,19 @@ func (s *ls) SaveSettings(ctx context.Context, c *model.Client, settings *model.
}(time.Now())
return s.Service.SaveSettings(ctx, c, settings)
}
+
+func (s *ls) MuteConversation(ctx context.Context, c *model.Client, id string) (err error) {
+ defer func(begin time.Time) {
+ s.logger.Printf("method=%v, id=%v, took=%v, err=%v\n",
+ "MuteConversation", id, time.Since(begin), err)
+ }(time.Now())
+ return s.Service.MuteConversation(ctx, c, id)
+}
+
+func (s *ls) UnMuteConversation(ctx context.Context, c *model.Client, id string) (err error) {
+ defer func(begin time.Time) {
+ s.logger.Printf("method=%v, id=%v, took=%v, err=%v\n",
+ "UnMuteConversation", id, time.Since(begin), err)
+ }(time.Now())
+ return s.Service.UnMuteConversation(ctx, c, id)
+}