Collage  1.0.1
Object-Oriented C++ Network Library
log.h
1 
2 /* Copyright (c) 2006-2013, Stefan Eilemann <eile@equalizergraphics.com>
3  *
4  * This file is part of Collage <https://github.com/Eyescale/Collage>
5  *
6  * This library is free software; you can redistribute it and/or modify it under
7  * the terms of the GNU Lesser General Public License version 2.1 as published
8  * by the Free Software Foundation.
9  *
10  * This library is distributed in the hope that it will be useful, but WITHOUT
11  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12  * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
13  * details.
14  *
15  * You should have received a copy of the GNU Lesser General Public License
16  * along with this library; if not, write to the Free Software Foundation, Inc.,
17  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18  */
19 
20 #ifndef CO_LOG_H
21 #define CO_LOG_H
22 
23 #include <lunchbox/log.h>
24 
25 namespace co
26 {
28  enum LogTopics
29  {
30  LOG_OBJECTS = lunchbox::LOG_CUSTOM << 0, // 16
31  LOG_BARRIER = lunchbox::LOG_CUSTOM << 1, // 32
32  LOG_RSP = lunchbox::LOG_CUSTOM << 2, // 64
33  LOG_PACKETS = lunchbox::LOG_CUSTOM << 3, // 128
34  LOG_CUSTOM = lunchbox::LOG_CUSTOM << 5 // 512
35  };
36 }
37 #endif // CO_LOG_H
LogTopics
lunchbox::Log topic emitted by Collage.
Definition: log.h:28