source: molecuilder/src/log.cpp@ c20eac

Last change on this file since c20eac was 075729, checked in by Frederik Heber <heber@…>, 15 years ago

Merge branch 'Analysis_PairCorrelation' into StructureRefactoring

Conflicts:

molecuilder/src/Makefile.am
molecuilder/src/World.cpp
molecuilder/src/World.hpp
molecuilder/src/boundary.cpp
molecuilder/src/builder.cpp
molecuilder/src/log.cpp
molecuilder/src/moleculelist.cpp
molecuilder/src/periodentafel.cpp
molecuilder/src/tesselation.cpp
molecuilder/src/unittests/AnalysisCorrelationToSurfaceUnitTest.cpp
molecuilder/src/unittests/Makefile.am
molecuilder/src/unittests/bondgraphunittest.cpp
molecuilder/src/unittests/gslvectorunittest.cpp
molecuilder/src/unittests/logunittest.cpp
molecuilder/src/unittests/tesselation_boundarytriangleunittest.hpp
molecuilder/src/vector.cpp
molecuilder/tests/Tesselations/defs.in

Conflicts have been many and too numerous to listen here, just the few general cases

  • new molecule() replaced by World::getInstance().createMolecule()
  • new atom() replaced by World::getInstance().createAtom() where appropriate.
  • Some DoLog()s added interfered with changes to the message produced by Log() << Verbose(.) << ...
  • DoLog() has been erroneously added to TestRunner.cpp as well, there cout is appropriate
  • ...

Additionally, there was a bug in atom::clone(), sort was set to atom::nr of the atom to clone not of the clone itself. This caused a failure of the fragmentation.

This merge has been fully checked from a clean build directory with subsequent configure,make all install and make check.
It configures, compiles and runs all test cases and the test suite without errors.

Signed-off-by: Frederik Heber <heber@…>

  • Property mode set to 100644
File size: 1.4 KB
Line 
1/*
2 * log.cpp
3 *
4 * Created on: Oct 19, 2009
5 * Author: metzler
6 */
7
8#include "logger.hpp"
9#include "errorlogger.hpp"
10
11/**
12 * Sets verbosity for the error logger and the standard logger.
13 *
14 * \param int verbosity level
15 */
16void setVerbosity(int verbosityLevel) {
17 logger::getInstance().setVerbosity(verbosityLevel);
18}
19
20/**
21 * Prints a log entry.
22 *
23 * \param indentation level of the message to log
24 */
25class logger& Log() {
26 return logger::getInstance();
27}
28
29/** Checks verbosity for logger.
30 * Is supposed to be used in construct as this:
31 * DoLog(2) && (Log() << Verbose(2) << "message." << endl);
32 * If DoLog does not return true, the right-hand side is not evaluated and we save some time.
33 * \param verbose verbosity level of this message
34 * \return true - print, false - don't
35 */
36bool DoLog(int verbose) {
37 return (verbose <= logger::getInstance().verbosity);
38}
39
40/** Checks verbosity for errorlogger.
41 * Is supposed to be used in construct as this:
42 * DoLog(2) && (Log() << Verbose(2) << "message." << endl);
43 * If DoLog does not return true, the right-hand side is not evaluated and we save some time.
44 * \param verbose verbosity level of this message
45 * \return true - print, false - don't
46 */
47bool DoeLog(int verbose) {
48 return (verbose <= errorLogger::getInstance().verbosity);
49}
50
51/**
52 * Prints an error log entry.
53 *
54 * \param indentation level of the message to log
55 */
56class errorLogger & eLog() {
57 return errorLogger::getInstance();
58}
Note: See TracBrowser for help on using the repository browser.