Design of Orocos Logger class

Source: Internet
Author: User

Singleton mode : Create global objects with local static (non-local static possible initialization problems)

Select One of the implementations (Std::cerr, printf, file) by #ifdef, #ifndef, #if defined, and other conditional compilations

Setting some default values through environment variables

if"ORO_LOGLEVEL"0 ){...}

Using nested classes to manage internal implementation log level (Info, Waring, Error) control

class Logger {    struct D;     D* d;  //}

Use the constructors and destructors of local variables to set the function associated with the scope .

Logger::In::Instd::string& modname)         : oldmod( Logger::log().getLogModule() )  // 记录当前设置,用于恢复{    Logger::log().in(modname);  // 在构造函数中设置某些功能}Logger::In::~In(){    Logger::log().out(oldmod);  // 离开作用域,在析构函数中恢复}

Copyright NOTICE: This article for Bo Master original article, without Bo Master permission not reproduced.

Design of Orocos Logger class

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.