Questions tagged [boost-log]

The Boost C++ library for logging, focused on simplicity, extensibility and performance

336 questions
-1
votes
1 answer

Boost log crashes when disk full

Boost log causes my application to crash when I run out of disk space. It also crashes if I open an active log file in excel and it tries to rollover the file when excel has it open. It is pretty awful that my application crashes due to the logging.…
deltanine
  • 1,166
  • 1
  • 13
  • 25
-1
votes
1 answer

Boost log trivial auto flush

In default mode boost.log writes to the console, which is fine by me. I'm trying to force it to auto-flush as well, however. All examples dealing with auto flush I can find show how to add a new sink, which seems unnecessary in my case. There is…
Andre
  • 637
  • 6
  • 16
-1
votes
1 answer

Trying to find a way to LOG Graphical data in OpenCV/BOOST

To begin with: I am working on Image Processing using OpenCV C++. After loading a Mat image in a C++ program, I plotted a graph of the image using GNUPLOT. Now, The Requirement is to log the graphical data of the Mat image. To do this, I created a…
DivyaMaheswaran
  • 886
  • 1
  • 12
  • 16
-1
votes
1 answer

Boost log destructor aborted

I develop *nix CLI app with boost_log. Few days ago I moved all the code apart of main() to .so library and after that I get crash (please see below) every time my app exits. It's not critical but looks nasty so I'd love to get rid of it. Any…
v.v
  • 47
  • 1
  • 6
-2
votes
1 answer

Boost Dynamic Linking

I am aware this question was asked many times before, always ending with the same answer... add -DBOOST_LOG_DYN_LINK to your CMakeLists.txt file. However, I've had this in my cmake for a long time and everything was linking without any problems. Now…
aywen
  • 75
  • 1
  • 1
  • 9
-2
votes
1 answer

Log file is not getting created

I need a global logger that I can use across multiple classes in my project. I want to have logger settings in an ini file. I start following example here and combined it with some suggestions at my earlier question here. My Logger.h is as…
whoami
  • 1,689
  • 3
  • 22
  • 45
1 2 3
22
23