diff --git a/ts/models/conversations.ts b/ts/models/conversations.ts index 68401557e1..f224b74be3 100644 --- a/ts/models/conversations.ts +++ b/ts/models/conversations.ts @@ -898,6 +898,9 @@ export class ConversationModel extends window.Backbone } enableProfileSharing({ viaStorageServiceSync = false } = {}): void { + window.log.info( + `enableProfileSharing: ${this.idForLogging()} storage? ${viaStorageServiceSync}` + ); const before = this.get('profileSharing'); this.set({ profileSharing: true }); @@ -910,6 +913,9 @@ export class ConversationModel extends window.Backbone } disableProfileSharing({ viaStorageServiceSync = false } = {}): void { + window.log.info( + `disableProfileSharing: ${this.idForLogging()} storage? ${viaStorageServiceSync}` + ); const before = this.get('profileSharing'); this.set({ profileSharing: false });