Sha256: 734fea62dce866c822c2827e150ad3e987bce139162444b06e55f9c71a58dea3

Contents?: true

Size: 656 Bytes

Versions: 16

Compression:

Stored size: 656 Bytes

Contents

#include "log_capture.hpp"
#include <boost/nowide/iostream.hpp>

using namespace std;
using namespace leatherman::logging;

namespace leatherman { namespace execution { namespace testing {

    log_capture::log_capture(log_level level)
    {
        // Setup logging for capturing
        setup_logging(_stream);
        set_level(level);
    }

    log_capture::~log_capture()
    {
        // Cleanup
        setup_logging(boost::nowide::cout);
        set_level(log_level::none);
        clear_error_logged_flag();
    }

    string log_capture::result() const
    {
        return _stream.str();
    }

}}}  // namespace leatherman::execution::testing

Version data entries

16 entries across 16 versions & 2 rubygems

Version Path
facter-3.12.2.cfacter.20181217 ext/facter/leatherman/execution/tests/log_capture.cc
facter-3.12.1.cfacter.20181031 ext/facter/leatherman/execution/tests/log_capture.cc
facter-3.11.6.cfacter.20181031 ext/facter/leatherman/execution/tests/log_capture.cc
facter-3.12.1.cfacter.20181023 ext/facter/leatherman/execution/tests/log_capture.cc
facter-3.11.5.cfacter.20181022 ext/facter/leatherman/execution/tests/log_capture.cc
facter-3.12.0.cfacter.20181004 ext/facter/leatherman/execution/tests/log_capture.cc
facter-3.12.0.cfacter.20181001 ext/facter/leatherman/execution/tests/log_capture.cc
facter-3.12.0.cfacter.20180918 ext/facter/leatherman/execution/tests/log_capture.cc
facter-3.11.4.cfacter.20180821 ext/facter/leatherman/execution/tests/log_capture.cc
facter-3.11.3.cfacter.20180716 ext/facter/leatherman/execution/tests/log_capture.cc
facter-3.11.2.cfacter.20180612 ext/facter/leatherman/execution/tests/log_capture.cc
facter-3.9.6.cfacter.20180612 ext/facter/leatherman/execution/tests/log_capture.cc
facter-3.11.2.cfacter.20180606 ext/facter/leatherman/execution/tests/log_capture.cc
facter-3.9.6.cfacter.20180606 ext/facter/leatherman/execution/tests/log_capture.cc
facter-3.11.0.cfacter.20180319 ext/facter/leatherman/execution/tests/log_capture.cc
cfacter-3.11.0.rc.20180314 ext/facter/leatherman/execution/tests/log_capture.cc