mirror of
https://gitlab.xiph.org/xiph/icecast-common.git
synced 2024-10-27 05:10:16 -04:00
d0cf9fe000
Convert all tabs to 4 spaces. All code must now use 4 space indents. svn path=/trunk/avl/; revision=4492
22 lines
311 B
C
22 lines
311 B
C
#include "log.h"
|
|
|
|
#define CATMODULE "test"
|
|
|
|
#define LOG_ERR(x, y, z...) log_write(x, 1, CATMODULE "/" __FUNCTION__, y, ##z)
|
|
|
|
|
|
int main(void)
|
|
{
|
|
int lid;
|
|
|
|
log_initialize();
|
|
|
|
lid = log_open("test.log");
|
|
|
|
LOG_ERR(lid, "The log id is %d, damnit...", lid);
|
|
|
|
log_close(lid);
|
|
|
|
log_shutdown();
|
|
}
|