Sign in
apache
/
logging-log4cxx
/
78d8e82a375940e82967923117bd026582d1dda8
/
.
/
src
/
examples
/
cpp
/
com
/
foo
/
bar-qt.cpp
blob: 34d4468180c69d08d8ded654e37fdce2a7247e11 [
file
] [
log
] [
blame
]
#include
"com/foo/bar.h"
#include
"com/foo/config-qt.h"
using
namespace
com
::
foo
;
LoggerPtr
Bar
::
m_logger
(
getLogger
(
"com.foo.bar"
));
void
Bar
::
doIt
()
{
LOG4CXX_DEBUG
(
m_logger
,
QString
(
"Did it again!"
)
<<
QString
(
" - again!"
));
}