Skip to content

Commit

Permalink
Add Console example (#106)
Browse files Browse the repository at this point in the history
Signed-off-by: Louise Poubel <louise@openrobotics.org>
Signed-off-by: Michael Carroll <michael@openrobotics.org>
  • Loading branch information
chapulina authored and mjcarroll committed Oct 19, 2020
1 parent f5ee75a commit 6253679
Show file tree
Hide file tree
Showing 3 changed files with 63 additions and 0 deletions.
3 changes: 3 additions & 0 deletions examples/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ find_package(ignition-common4 QUIET REQUIRED COMPONENTS events profiler)
add_executable(assert_example assert_example.cc)
target_link_libraries(assert_example ignition-common4::core)

add_executable(console_example console.cc)
target_link_libraries(console_example ignition-common4::core)

add_executable(events_example events.cc)
target_link_libraries(events_example ignition-common4::events)

Expand Down
25 changes: 25 additions & 0 deletions examples/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Examples

These examples demonstrate various Ignition Common features.

## Build

After installing Ignition Common, from source or from binaries, build with:

```
git clone https://github.com/ignitionrobotics/ign-common/
cd ign-common/examples
mkdir build
cd build
cmake ..
make
```

## Run

One execuable is created inside the `build` folder for each example.

You can run each executable from the build folder with `./executablename`. For example:

`./events_example`

35 changes: 35 additions & 0 deletions examples/console.cc
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
/*
* Copyright (C) 2020 Open Source Robotics Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
#include <ignition/common.hh>

int main(int argc, char **argv)
{
// Default verbosity is 1, only error messages show
igndbg << "This is a debug message" << std::endl;
ignmsg << "This is an informational message" << std::endl;
ignwarn << "This is a warning" << std::endl;
ignerr << "This is an error" << std::endl;

// Change verbosity to level 4, all messages show
ignition::common::Console::SetVerbosity(4);
igndbg << "This is a debug message" << std::endl;
ignmsg << "This is an informational message" << std::endl;
ignwarn << "This is a warning" << std::endl;
ignerr << "This is an error" << std::endl;

return 0;
}

0 comments on commit 6253679

Please sign in to comment.