Merge "Fix soft-sensor-manager service build errors"
[platform/upstream/iotivity.git] / resource / oc_logger / examples / test_logging.c
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_logger.h"
22 #include "targets/oc_console_logger.h"
23 #include "targets/oc_ostream_logger.h"
24
25 #include <stdio.h>
26
27 /* Example of basic usage of the C library: */
28 void basic_demo(void)
29 {
30  oc_log_ctx_t *log;
31
32  log = oc_make_console_logger();
33
34  if(0 == log)
35   {
36         fprintf(stderr, "Unable to initialize logging subsystem.\n");
37         return;
38   }
39
40  oc_log_write(log, "Hello, World!");
41
42  oc_log_set_module(log, "FabulousModule");
43
44  oc_log_set_level(log, 50);
45
46  oc_log_write(log, "Hello again, World!");
47
48  oc_log_destroy(log);
49 }
50
51 /* Example of calling a C++ log implementation from C: */
52 void cpp_demo()
53 {
54  oc_log_ctx_t *log;
55
56  log = oc_make_ostream_logger();
57
58  if(0 == log)
59   {
60         fprintf(stderr, "Unable to initialize logging subsystem.\n");
61         return;
62   }
63
64  oc_log_write(log, "Hello from C++, World!");
65
66  oc_log_set_module(log, "BestModuleEver");
67
68  oc_log_set_level(log, 50);
69
70  oc_log_write(log, "Hello again from C++, World!");
71  oc_log_write(log, "Hello once more from C++, World!");
72
73  oc_log_destroy(log);
74 }
75
76 int main()
77 {
78  basic_demo();
79  cpp_demo();
80
81  return 0;
82 }