Guten Abend,
ich wollte eine Log erstellen/schreiben lassen.
Problem, es wird keine Log erstellt.
Code:
public AdminLog(logtext[])
{
new string[128], Log[128], hour, minit, second, day, month, year;
getdate(year, month, day);
format(Log, sizeof(Log), "Logs/Adminchat/%d.%d.%d.txt", day, month, year);
new File:Logfile = fopen(Log, io_append);
gettime(hour, minit, second);
format(string, sizeof(string), "[%d:%d] %s\n", hour, minit, logtext);
fwrite(Logfile, string);
fclose(Logfile);
return 1;
}
Benutzen tue ich es so:
AdminLog(string);
MfG. Dome
PS: Die Ordner: Logs -> Adminchat habe ich erstellt.