Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-common
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Timo Koch
dune-common
Commits
afc9bdf5
Commit
afc9bdf5
authored
14 years ago
by
Jorrit Fahlke
Browse files
Options
Downloads
Patches
Plain Diff
[Debug Streams] Document the #includes for the standard debug stream objects.
[[Imported from SVN: r6252]]
parent
bc5a1848
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dune/common/stdstreams.hh
+33
-3
33 additions, 3 deletions
dune/common/stdstreams.hh
with
33 additions
and
3 deletions
dune/common/stdstreams.hh
+
33
−
3
View file @
afc9bdf5
...
...
@@ -85,6 +85,10 @@ namespace Dune {
/*!
\brief stream for very verbose output.
\code
#include <dune/common/stdstreams.hh>
\endcode
Information on the lowest
level. This is expected to report insane amounts of
information. Use of the activation-flag to only generate output
...
...
@@ -104,7 +108,13 @@ namespace Dune {
*/
typedef
DebugStream
<
VERBOSE_DEBUG_LEVEL
,
MINIMAL_DEBUG_LEVEL
>
DVerbType
;
/** @brief Singleton of verbose debug stream. */
/**
* @brief Singleton of verbose debug stream.
*
* \code
*#include <dune/common/stdstreams.hh>
* \endcode
*/
extern
DVerbType
dverb
;
/**
...
...
@@ -122,6 +132,10 @@ namespace Dune {
/**
@brief Stream for informative output.
\code
#include <dune/common/stdstreams.hh>
\endcode
Summary infos on what a module
does, runtimes, etc.
*/
...
...
@@ -139,7 +153,13 @@ namespace Dune {
*/
typedef
DebugStream
<
WARN_DEBUG_LEVEL
,
MINIMAL_DEBUG_LEVEL
>
DWarnType
;
/** @brief Stream for warnings indicating problems. */
/**
* @brief Stream for warnings indicating problems.
*
* \code
*#include <dune/common/stdstreams.hh>
* \endcode
*/
extern
DWarnType
dwarn
;
/**
...
...
@@ -151,7 +171,13 @@ namespace Dune {
/** @brief Type of debug stream for fatal errors.*/
typedef
DebugStream
<
GRAVE_DEBUG_LEVEL
,
MINIMAL_DEBUG_LEVEL
>
DGraveType
;
/** @brief Stream for warnings indicating fatal errors.*/
/**
* @brief Stream for warnings indicating fatal errors.
*
* \code
*#include <dune/common/stdstreams.hh>
* \endcode
*/
extern
DGraveType
dgrave
;
/** @brief The type of the stream used for error messages. */
...
...
@@ -160,6 +186,10 @@ namespace Dune {
/*!
@brief Stream for error messages.
\code
#include <dune/common/stdstreams.hh>
\endcode
Only packages integrating Dune
completely will redirect it. The output of derr is independent of
the debug-level, only the activation-flag is checked.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment