Removed file logging

This commit is contained in:
Dmitriy Shishkov 2020-07-18 17:34:26 +05:00
parent c1dc450ef1
commit 4582f78abd
2 changed files with 0 additions and 18 deletions

View File

@ -8,13 +8,6 @@
#include <string.h> #include <string.h>
#include <stdbool.h> #include <stdbool.h>
#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 append_to_pos(char **str, int pos, char ch);
void remove_on_pos(char **str, int pos); void remove_on_pos(char **str, int pos);
int sep_string(char *line, char ***toks, char *sep); int sep_string(char *line, char ***toks, char *sep);

View File

@ -26,17 +26,6 @@ int main()
// Init // Init
t_ init_term() 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 // Entering raw mode
change_mode(1); change_mode(1);