Skip to content

Simple Log is a C library used for logging informations on standard output

Notifications You must be signed in to change notification settings

fxbalu/simplelog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simple Log

Testing program for Simple Log

Simple Log is a C library that allow you to display informations on standard output.

Use

call Simple Log function in your C program.

logError("Damnit, something's wrong");

output:

[E] in main (test.c:5) Damnit, something's wrong

You can use it like the printf function, with optional arguments

logInfo("%d files loaded", n);

output:

[I] in foo (bar.c:9001) 81 files loaded

Test

To test Simple Log, use the included test program and Makefile.

make
./test

About

I put Simple Log on Github for backup purpose. Feel free to do whatever you want with it.

About

Simple Log is a C library used for logging informations on standard output

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages