Removed file logging
This commit is contained in:
parent
c1dc450ef1
commit
4582f78abd
@ -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);
|
||||||
|
11
src/main.c
11
src/main.c
@ -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);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user