Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C++ logging library that allows HTML/CSS output?

Tags:

c++

logging

i'm looking for a C++ library, like boost.log or pantheios that easily allows for html/css-formatted log output, maybe with some fancy jquery. i'm sure this can be done with boost.log, but i suppose in that case i'd have to spend days until understanding how to program one owns sink, programming and then debugging it.

i wonder if there is some library that already can produce a html log directly from c++. apart from this it must work cross-platform and support utf-16 (or something alike to allow for non-english output).

any good suggestions?

like image 742
complexM Avatar asked Nov 13 '22 07:11

complexM


1 Answers

I haven't used this, though I've seen people reference it. It has threading support and has an HTML layout class, not sure if the latter is sufficient.

log4cxx

like image 103
Tom Kerr Avatar answered Dec 22 '22 05:12

Tom Kerr