diff options
Diffstat (limited to 'examples/log/log.tm')
| -rw-r--r-- | examples/log/log.tm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/examples/log/log.tm b/examples/log/log.tm index 3aa45e7a..7375d5f6 100644 --- a/examples/log/log.tm +++ b/examples/log/log.tm @@ -13,33 +13,33 @@ func _timestamp(->Text): strftime(str, 20, "%F %T", tm_info); str } - return c_str:as_text() + return c_str.as_text() func info(text:Text, newline=yes): say("$\[2]⚫ $text$\[]", newline) for file in logfiles: - file:append("$(_timestamp()) [info] $text$\n") + file.append("$(_timestamp()) [info] $text$\n") func debug(text:Text, newline=yes): say("$\[32]🟢 $text$\[]", newline) for file in logfiles: - file:append("$(_timestamp()) [debug] $text$\n") + file.append("$(_timestamp()) [debug] $text$\n") func warn(text:Text, newline=yes): say("$\[33;1]🟡 $text$\[]", newline) for file in logfiles: - file:append("$(_timestamp()) [warn] $text$\n") + file.append("$(_timestamp()) [warn] $text$\n") func error(text:Text, newline=yes): say("$\[31;1]🔴 $text$\[]", newline) for file in logfiles: - file:append("$(_timestamp()) [error] $text$\n") + file.append("$(_timestamp()) [error] $text$\n") func add_logfile(file:Path): - logfiles:add(file) + logfiles.add(file) func remove_logfile(file:Path): - logfiles:remove(file) + logfiles.remove(file) func main(): add_logfile((./log.txt)) |
