From 4582f78abdafa2cf1df84e723670f44bdbfc6cbd Mon Sep 17 00:00:00 2001 From: Dm1tr1y147 Date: Sat, 18 Jul 2020 17:34:26 +0500 Subject: [PATCH] Removed file logging --- include/utils.h | 7 ------- src/main.c | 11 ----------- 2 files changed, 18 deletions(-) diff --git a/include/utils.h b/include/utils.h index 61bc41c..eb164df 100644 --- a/include/utils.h +++ b/include/utils.h @@ -8,13 +8,6 @@ #include #include -#define log(fmt, ...) \ - { \ - log_file = fopen("/var/log/mshell.log", "a"); \ - fprintf(log_file, fmt, __VA_ARGS__); \ - fclose(log_file); \ - } - void append_to_pos(char **str, int pos, char ch); void remove_on_pos(char **str, int pos); int sep_string(char *line, char ***toks, char *sep); diff --git a/src/main.c b/src/main.c index e72e2ff..871e8dd 100644 --- a/src/main.c +++ b/src/main.c @@ -26,17 +26,6 @@ int main() // Init t_ init_term() { - // Log file - FILE *log_file = fopen("/var/log/mshell.log", "w"); - if (log_file == NULL) - { - fprintf(stderr, "Couldn't open log file\n"); - } - else - { - fprintf(log_file, "\n New session:\n"); - fclose(log_file); - } // Entering raw mode change_mode(1);