Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-03-05 | Drop Go 1.4 compatability code everywhere | Jakob Unterwurzacher | |
Yields a nice reduction in code size. | |||
2016-06-26 | tlog: switch default logger to syslog | Jakob Unterwurzacher | |
...unless "-nosyslog" is passed. All gocryptfs messages already go to syslog, but the messages that the go-fuse lib emits were still printed to stdout. Fixes issue #13 ( https://github.com/rfjakob/gocryptfs/issues/13 ) | |||
2016-06-15 | Rename internal "toggledlog" package to "tlog" | Jakob Unterwurzacher | |
tlog is used heavily everywhere and deserves a shorter name. Renamed using sed magic, without any manual rework: find * -type f -exec sed -i 's/toggledlog/tlog/g' {} + |