diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2022-10-25 13:29:34 +0300 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2022-10-25 13:29:34 +0300 |
commit | 96ae225b2a179ec36fdb01eaf906fec096002a08 (patch) | |
tree | 1e5fa708ca5cfdd777f3c32472910085ce69ebf1 /bin/logthis | |
parent | 4c76faf4c1a3d41fbd4c208d4ed43063077a2558 (diff) | |
download | arching-kaos-tools-96ae225b2a179ec36fdb01eaf906fec096002a08.tar.gz arching-kaos-tools-96ae225b2a179ec36fdb01eaf906fec096002a08.tar.bz2 arching-kaos-tools-96ae225b2a179ec36fdb01eaf906fec096002a08.zip |
New log format: script, level, message
Diffstat (limited to 'bin/logthis')
-rwxr-xr-x | bin/logthis | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/logthis b/bin/logthis index 0839422..347fd0b 100755 --- a/bin/logthis +++ b/bin/logthis @@ -1,3 +1,3 @@ #!/bin/bash -echo "$(date -u +%s)" "$1" "$2" >> $LOGSFILE +echo "$(date -u +%s)" "$1" "$2" "$3" >> $LOGSFILE |