865 B
865 B
Basalt
log
This writes something into a file. The main goal is to make debugging errors easier. Lets say you'r program is crashing and you don't know why, you could use basalt.log The log files will automatically removed after you start your program again.
Parameters
stringThe text to write into the log filestring- optional (default: "Debug") - the type to write
Usage
- Writes "Hello!" into the log file
basalt.log("Hello!")
This should result in there beeing a file called basaltLog.txt. In the file it should say [Basalt][Debug]: Hello!.
- Writes "Config file missing" into the log file, with warning as prefix.
basalt.log("Config file is missing", "WARNING")
This should result in there beeing a file called basaltLog.txt. In the file it should say [Basalt][WARNING]: Config file is missing.