Class | Line # | Actions | |||||
---|---|---|---|---|---|---|---|
XWikiLoggerManager | 29 | 4 | 0% | 7 | 9 |
1 | /* | |
2 | * See the NOTICE file distributed with this work for additional | |
3 | * information regarding copyright ownership. | |
4 | * | |
5 | * This is free software; you can redistribute it and/or modify it | |
6 | * under the terms of the GNU Lesser General Public License as | |
7 | * published by the Free Software Foundation; either version 2.1 of | |
8 | * the License, or (at your option) any later version. | |
9 | * | |
10 | * This software is distributed in the hope that it will be useful, | |
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 | * Lesser General Public License for more details. | |
14 | * | |
15 | * You should have received a copy of the GNU Lesser General Public | |
16 | * License along with this software; if not, write to the Free | |
17 | * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA | |
18 | * 02110-1301 USA, or see the FSF site: http://www.fsf.org. | |
19 | */ | |
20 | package org.xwiki.extension.repository.aether.internal.components; | |
21 | ||
22 | import org.codehaus.plexus.logging.AbstractLoggerManager; | |
23 | import org.slf4j.Logger; | |
24 | ||
25 | /** | |
26 | * @version $Id: 7225188805dcfa2d7435e33315b424a57a2d545c $ | |
27 | * @since 4.0M1 | |
28 | */ | |
29 | public class XWikiLoggerManager extends AbstractLoggerManager | |
30 | { | |
31 | private XWikiLogger logger; | |
32 | ||
33 | 25 | public XWikiLoggerManager(Logger logger) |
34 | { | |
35 | 25 | this.logger = new XWikiLogger(logger); |
36 | } | |
37 | ||
38 | 0 | @Override |
39 | public int getActiveLoggerCount() | |
40 | { | |
41 | 0 | return 1; |
42 | } | |
43 | ||
44 | 0 | @Override |
45 | public org.codehaus.plexus.logging.Logger getLoggerForComponent(String arg0, String arg1) | |
46 | { | |
47 | 0 | return this.logger; |
48 | } | |
49 | ||
50 | 0 | @Override |
51 | public int getThreshold() | |
52 | { | |
53 | 0 | return this.logger.getThreshold(); |
54 | } | |
55 | ||
56 | 0 | @Override |
57 | public void returnComponentLogger(String arg0, String arg1) | |
58 | { | |
59 | } | |
60 | ||
61 | 0 | @Override |
62 | public void setThreshold(int arg0) | |
63 | { | |
64 | } | |
65 | ||
66 | 0 | @Override |
67 | public void setThresholds(int arg0) | |
68 | { | |
69 | } | |
70 | } |