14 lines
405 B
Plaintext
14 lines
405 B
Plaintext
|
Simple Logger Library
|
||
|
|
||
|
Author: Jason Luu
|
||
|
Date: Sept 5, 2014
|
||
|
|
||
|
This library provides simple logging operations.
|
||
|
|
||
|
- Output messages to both file and terminal
|
||
|
- Tag messages based on feedback type (eg. info, warning, or error)
|
||
|
- Track number of warnings and errors
|
||
|
|
||
|
Specialized programming knowledge:
|
||
|
- Requires usage of variable arguments in <stdarg.h> standard C library to properly wrap printf and fprintf
|