Added story identifier when debug logging
Co-authored-by: Jamie Kyle <jamie@signal.org>
This commit is contained in:
parent
77f92b6cc3
commit
b720ed7bd5
1 changed files with 3 additions and 1 deletions
|
@ -356,7 +356,9 @@ class Message {
|
|||
const placeholders = this.body.match(/\uFFFC/g);
|
||||
const placeholderCount = placeholders ? placeholders.length : 0;
|
||||
log.info(
|
||||
`Sending a message with ${mentionCount} mentions and ${placeholderCount} placeholders`
|
||||
`Sending a message with ${mentionCount} mentions and ${placeholderCount} placeholders${
|
||||
this.storyContext ? `, story: ${this.storyContext.timestamp}` : ''
|
||||
}`
|
||||
);
|
||||
}
|
||||
if (this.flags) {
|
||||
|
|
Loading…
Add table
Reference in a new issue