Multi-line svn commit, see body.
[shibboleth/cpp-xmltooling.git] / xmltooling / logging.h
1 /*
2  *  Copyright 2001-2007 Internet2
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 /**
18  * @file xmltooling/logging.h
19  * 
20  * Assist with logging portability.
21  */
22  
23 #ifndef __xmltooling_logging_h__
24 #define __xmltooling_logging_h__
25
26 #include <xmltooling/base.h>
27
28 #if defined(XMLTOOLING_LOG4SHIB)
29 # include <log4shib/Category.hh>
30 # include <log4shib/CategoryStream.hh>
31 namespace xmltooling {
32     namespace logging = log4shib;
33 };
34 #elif defined(XMLTOOLING_LOG4CPP)
35 # include <log4cpp/Category.hh>
36 # include <log4cpp/CategoryStream.hh>
37 namespace xmltooling {
38     namespace logging = log4cpp;
39 };
40 #else
41 # error "Supported logging library not available."
42 #endif
43
44 #endif /* __xmltooling_logging_h__ */