source: ThirdParty/CodePatterns/src/Helpers/unittests/stubs/LogStub.cpp@ 41e8e2

Action_Thermostats Add_AtomRandomPerturbation Add_RotateAroundBondAction Add_SelectAtomByNameAction Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_StructOpt_integration_tests Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_ChronosMutex Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion GeometryObjects Gui_displays_atomic_force_velocity IndependentFragmentGrids_IntegrationTest JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks RotateToPrincipalAxisSystem_UndoRedo StoppableMakroAction Subpackage_CodePatterns Subpackage_JobMarket Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg ThirdParty_MPQC_rebuilt_buildsystem TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps Ubuntu_1604_changes stable
Last change on this file since 41e8e2 was 41e8e2, checked in by Frederik Heber <heber@…>, 8 years ago

Merge commit '084729c5923f0123e695fbe2548b393288c1f13d' as 'ThirdParty/CodePatterns'

  • Property mode set to 100644
File size: 1.7 KB
Line 
1/*
2 * Project: MoleCuilder
3 * Description: creates and alters molecular systems
4 * Copyright (C) 2010 University of Bonn. All rights reserved.
5 * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.
6 */
7
8/*
9 * LogStub.cpp
10 *
11 * Created on: Apr 06, 2011
12 * Author: heber
13 */
14
15// include config.h
16#ifdef HAVE_CONFIG_H
17#include <config.h>
18#endif
19
20#include "CodePatterns/logger.hpp"
21#include "CodePatterns/errorlogger.hpp"
22
23/**
24 * Sets verbosity for the error logger and the standard logger.
25 *
26 * \param int verbosity level
27 */
28void setVerbosity(int verbosityLevel)
29{}
30
31/**
32 * Gets verbosity for the error logger and the standard logger.
33 *
34 * \param int verbosity level
35 */
36int getVerbosity()
37{
38 return 0;
39}
40
41/**
42 * Prints a log entry.
43 *
44 * \param indentation level of the message to log
45 */
46class logger& Log()
47{
48 return logger::getInstance();
49}
50
51/** Checks verbosity for logger.
52 * Is supposed to be used in construct as this:
53 * DoLog(2) && (Log() << Verbose(2) << "message." << endl);
54 * If DoLog does not return true, the right-hand side is not evaluated and we save some time.
55 * \param verbose verbosity level of this message
56 * \return true - print, false - don't
57 */
58bool DoLog(int verbose)
59{
60 return true;
61}
62
63/** Checks verbosity for errorlogger.
64 * Is supposed to be used in construct as this:
65 * DoLog(2) && (Log() << Verbose(2) << "message." << endl);
66 * If DoLog does not return true, the right-hand side is not evaluated and we save some time.
67 * \param verbose verbosity level of this message
68 * \return true - print, false - don't
69 */
70bool DoeLog(int verbose)
71{
72 return false;
73}
74
75/**
76 * Prints an error log entry.
77 *
78 * \param indentation level of the message to log
79 */
80class errorLogger & eLog()
81{
82 return errorLogger::getInstance();
83}
Note: See TracBrowser for help on using the repository browser.