The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
37 views

Building Boost 1.53.0 Boost Log 2.0r862 on OSX 10.8.3

I am working at building Boost 1.53.0 with Boost Log 2.0r862 on Mac OSX 10.8.2 and installed it to a fake root to keep the /usr/lib* and /opt/lib* clean. I built and installed Boost with./bootstrap ...
0
votes
0answers
51 views

How to make use of Boost.Log?

I am currently considering to use Boost.Log for logging purposes. It looks quite interesting, but I am not quite sure yet, how I am supposed to manage logger objects. As far as I can see, there are ...
0
votes
0answers
27 views

How to build Boost Log examples?

In the directory "boost-log-2.0\libs\log\example\event_log", there is main.cpp and the other two files event_log_messages.mc and Jamfile.v2. The main.cpp is including a .h file called ...
0
votes
1answer
39 views

Boost.Log unable to set logging filter (undeclared identifier 'severity')

I'm trying to get Boost.Log going in my project. The problem comes in the following line from the trivial example: using namespace boost::log; core::get()->set_filter ( trivial::severity >= ...
0
votes
0answers
38 views

boost.log errors linking statically

I'm getting the following (and many more) errors when attempting to link my project statically with boost.log on MSVC 10.0: 1>libboost_log-vc100-mt-gd-1_53.lib(attribute_name.obj) : error ...
0
votes
1answer
48 views

How to redirect Boost.Log to file

I want a simple log file in a concurrent application. I've download Boost.Log v2.0 and using compiled it with Boost 1.53.0. The problem is that Boost.Log output on console. I'm using ...
0
votes
1answer
73 views

Using boost.log with printf-style macros

I'm working on an application that uses an custom, platform-dependent logger. The application defines some printf-style macros: #define LOG_DEBUG(format, ...) \ logger.log(DEBUG, __FUNCTION__, ...
5
votes
1answer
169 views

Boost Log 2.0 : empty Severity level in logs

I'm using Boost-Log 2.0, which has some differences from version 1, and I have a hard time outputting the "Severity" attribute. I'm using the "Boost.Format-style" formatters : "%TimeStamp% [%Uptime%] ...
0
votes
1answer
72 views

Boost Log not being recognized by cmake

I am new to Linux(ubuntu) and I am having trouble installing Boost log. The rest of the boost libraries work and cmake correctly finds the boost folder located in /usr/local/include. However, the ...
2
votes
0answers
214 views

Installing boost.log (windows 7 using codeblocks 12.11+gcc 4.7.1)

I am trying to build and run the Boost.Log library on CodeBlocks 12.11. I have no experience with boost and boost.log, and want to learn it, so, firstly I need to install it. Installing boost First ...
-1
votes
1answer
274 views

A mysterious compilation error: cannot convert from 'const boost::shared_ptr<T>' to 'const boost::shared_ptr<T>'

I wanted to protect the access to a log file that I use for multithreaded logging with boostlog library. I tried this stream class class ThreadSafeStream { public: template <typename ...
0
votes
0answers
96 views

building documentation for boost-log

I am somehow stuck. I would like to build the latest beta version of boost-log. So I symlinked the boost/log and libs/log directories into the boost 1.51 tree and was able to successfully build all ...
2
votes
0answers
261 views

Boost.log: No output in the console or in the output file respectively

I've downloaded and compiled successfully the boost.log sources from svn under Windows 7 using mingw-4.7. IDE: eclipse-juno with CDT. The compilation string for the entire boost-sources (including ...
4
votes
2answers
455 views

Building Boost with Boost.Log “error: target { simple_event_log.mc. } has no type”

I am trying to build Boost.Log ( http://boost-log.sourceforge.net/libs/log/doc/html/index.html ). I added it to my boost sources and executed my usual boost build command. b2 ...
3
votes
1answer
382 views

Boost::Log - Log with severity and custom filter attribute? Which macro(s) to use?

I want to use boost::log to let my loadtest application log to different files and to console. Each workthread (representing one user connected to the server to be tested) shall log thread log and log ...
1
vote
1answer
87 views

What is the minimum Boost version to compile Boost.Log (as of revision 667)?

I have sucessfully built some Boost C++ 1.44.0 libraries for iOS 4.3. I now need Boost.Log v2. Boost.Log requires Boost C++ to be built. However, the Boost.Log documentation does not mention any ...
0
votes
1answer
88 views

Filter by scope in Boost.Log

I'm using Boost.Log library. I've created a named_scope attribute that keeps track of where I am in the code. (I specify it by hand with BOOST_LOG_NAMED_SCOPE("...").) Is it possible to create a ...
0
votes
1answer
182 views

boost::log - timer attribute formatter

I measure the execution time of certain functions in my application using boost::log. I would like to format timer attribute of boost::log to show time as total milliseconds instead of HH:mm:ss.fff. ...
3
votes
0answers
400 views

How to compile Boost.Log standalone

After doing some research, partially on the Stack Overflow, I decided to try Boost.Log library by Andrey Semashev. Unfortunately, to build the Boost.Log library I have to place it in the Boost source ...
4
votes
1answer
1k views

Boost.Log vs. Boost.Log v2

I am currently evaluating some log frameworks for unmanaged C++. My question is what is the difference between Boost.Log and Boost.Log v2. The Api is different ? It is safe to use Boost.Log v2 in a ...
0
votes
1answer
373 views

Linking error while trying to build Boost.Log example

I have successfully built the Boost.Log library on Windows 7 for VS 2010. When I tried to run the simplest example, my program could not find the symbols for Boost.System and Boost.Filesystem, and I ...
0
votes
1answer
590 views

boost logging with filters

I am new to boost-log and tried to make the trivial logging with filters example work with boost-log 1.1. The code looks like this: #include <boost/log/core.hpp> #include ...
0
votes
1answer
264 views

boost log tutorial trivial logging example does not link on VS2010

#include <boost/log/trivial.hpp> int main(int, char*[]) { BOOST_LOG_TRIVIAL(trace) << " a trace message "; } Unresolved external symbols to boost::system, filesystem3, coecvt. Oddly ...
1
vote
1answer
288 views

Why does boost.log crash on Windows XP?

I'm using boost.log. Apart from the extreme amount of agro actually getting and building it, it's been running OK on Windows 7 and Vista. I'm now trying to use the application on Windows XP, but ...
2
votes
2answers
772 views

how to customize “TimeStamp” format of Boost.Log

I want to get year-month-day hour:minute:second.fraction(2 digits), if I use "%Y-%m-%d %H:%M:%S.%f", I got almost what I want exception for the fraction( last part ) of seconds, it's showing 6 digits ...
0
votes
1answer
173 views

how to write log into formatted folders using Boost.Log?

Boost.Log supports configurable file name, e.g. %Y_%m_%d_sample_%N.log. What I want is put them in different folders, say, "%Y_%m_%d/sample_%N.log", but it created a folder named "%Y_%m_%d", while I'm ...
0
votes
1answer
360 views

Boost.log V1 Compilation Error

Experiencing difficulty in compiling boost.log v1 in my code, though I know that the issue is due to boost.filesystem v3 lack of support. I know I need to #define BOOST_FILESYSTEM_VERSION 2 but where ...
0
votes
1answer
625 views

boost.log auto_flush files are not stored when app is crashed

Recently I started to play with boost.log, and bumped into an issue that if an unhanded exception is thrown no log messages are written to the log file. I am using rolling text files and auto-flash ...
43
votes
3answers
10k views

Experience using Boost.Log logging library? [closed]

I am considering starting to use the Boost.Log logging library. Is anyone using Boost.Log? Please share your experiences in this regard. The other libraries I am considering are Apache log4cxx (it ...
1
vote
1answer
2k views

Installing boost log

I've got this library for logging in boost. I have a question about installing. How to install it? Here is the latest version. There are 3 folder: boost, doc, libs. How can I install this library ...