Skip to content

Commit f860ac3

Browse files
committed
do not print chat on save
1 parent 34a40b3 commit f860ac3

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

storage.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ void save_chat(){
4444
printf("Failed to create file: \"%s\". Did not save.\n", chatStoragePath);
4545
}
4646
char *stringifiedChat = stringify_chat_log();
47-
printf("Chat log: %s\n", stringifiedChat);
4847
write(fd, stringifiedChat, strlen(stringifiedChat));
4948
free(stringifiedChat);
5049
close(fd);

0 commit comments

Comments
 (0)