Logger

Logger is a lib which you can link with your source code to log in Excel sheet with the current time


how to build ?

build Library

cd LoggerLib
make
cp build/liblogger.a ../app

Build app

cd ../app
make
./build/app

Using in Custom App

Steps

1-generate liblogger.a and copy to source code

2-make folder called inc

3-copy headers to inc

  • Logger.hpp

  • IExcel.hpp

  • ExcelManger.hpp

4-compile

	g++ main.c  -o executable -I inc/ -pthread -llogger -L .

  • -L location of library < liblogger.a >
  • -I includes
  • -llogger name of lib

image


image


image