Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-01-01 | Fix license headers and file descriptions | Maxim Biro | |
2015-12-31 | Rename LOGGER_BACKEND to LOG_BACKEND | Maxim Biro | |
2015-12-31 | Make daemon use the new log code | Maxim Biro | |
"log" is a reserved name (log from math.h), so it got changed into write_log. | |||
2015-12-31 | Make logger a global object instead of an instance | Maxim Biro | |
Passing Logger object into every function isn't fun. See for yourself: something as simple as a public key printing function turns from >void print_public_key(const uint8_t *public_key) to >void print_public_key(Logger *logger, const uint8_t *public_key) |