iotivity 0.9.0
[platform/upstream/iotivity.git] / resource / oc_logger / test / test_logging.cpp
1 //******************************************************************
2 //
3 // Copyright 2014 Intel Mobile Communications GmbH All Rights Reserved.
4 //
5 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
6 //
7 // Licensed under the Apache License, Version 2.0 (the "License");
8 // you may not use this file except in compliance with the License.
9 // You may obtain a copy of the License at
10 //
11 //      http://www.apache.org/licenses/LICENSE-2.0
12 //
13 // Unless required by applicable law or agreed to in writing, software
14 // distributed under the License is distributed on an "AS IS" BASIS,
15 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 // See the License for the specific language governing permissions and
17 // limitations under the License.
18 //
19 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
20
21 #include "oc_log.hpp"
22 #include "oc_console_logger.h"
23 #include "oc_ostream_logger.hpp"
24
25 #include <iosfwd>
26 #include <memory>
27 #include <cassert>
28 #include <sstream>
29 #include <iostream>
30
31 #include <boost/iostreams/stream.hpp>
32 #include <boost/iostreams/categories.hpp>
33
34 #include <boost/config.hpp>
35 #include <boost/iostreams/categories.hpp>
36 #include <boost/iostreams/detail/ios.hpp>
37
38 int main()
39 {
40  using OC::oc_log_stream;
41
42  oc_log_stream ols(oc_make_console_logger);
43
44  boost::iostreams::stream<oc_log_stream> os(ols);
45
46  os << "Greetings from the nifty world of loggin'!" << std::flush;
47
48  (*os).set_module("TheHappiestModuleEver");
49
50  os << "Whee!" << std::flush;
51
52  return 0;
53 }
54