mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-09 16:50:30 +00:00
parent
e7b3ebf98a
commit
0dbbd0414c
15
contrib/inmessage-logger.tengo
Normal file
15
contrib/inmessage-logger.tengo
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
fmt := import("fmt")
|
||||||
|
os := import("os")
|
||||||
|
times := import("times")
|
||||||
|
|
||||||
|
if msgText != "" && msgUsername != "system" {
|
||||||
|
os.chdir("/var/www/matterbridge")
|
||||||
|
file := os.open_file("inmessage.log", os.o_append|os.o_wronly|os.o_create, 0644)
|
||||||
|
file.write_string(fmt.sprintf(
|
||||||
|
"[%s] <%s> %s\n",
|
||||||
|
times.time_format(times.now(), times.format_rfc1123),
|
||||||
|
msgUsername,
|
||||||
|
msgText
|
||||||
|
))
|
||||||
|
file.close()
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user