Skip to content

Commit 84e6072

Browse files
author
Nic Bradley
committed
Removing extraneous logging
1 parent 5f13549 commit 84e6072

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

ChatSetAttr/1.11/ChatSetAttr.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1327,12 +1327,10 @@ var ChatSetAttr = function() {
13271327
output += this.createHeader();
13281328
output += this.createContent();
13291329
output += this.closeWrapper();
1330-
log(`Output: ${output}`);
13311330
sendChat(this.from, output, void 0, { noarchive });
13321331
}
13331332
createWhisper() {
13341333
if (this.whisper === false) {
1335-
log(`ChatOutput: Not sending as whisper`);
13361334
return ``;
13371335
}
13381336
if (this.playerID === "GM") {

ChatSetAttr/build/src/classes/ChatOutput.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,13 +69,11 @@ export class ChatOutput {
6969
output += this.createHeader();
7070
output += this.createContent();
7171
output += this.closeWrapper();
72-
log(`Output: ${output}`);
7372
sendChat(this.from, output, undefined, { noarchive });
7473
};
7574

7675
private createWhisper() {
7776
if (this.whisper === false) {
78-
log(`ChatOutput: Not sending as whisper`);
7977
return ``;
8078
}
8179
if (this.playerID === "GM") {

0 commit comments

Comments
 (0)