1 /*
2 * Copyright 2011 Andres Gomez Casanova
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 package net.sf.mgaip;
17
18 import org.apache.maven.plugin.logging.SystemStreamLog;
19
20 /**
21 * Logger to print the debug options.
22 * <p>
23 * <b>Control Version</b>
24 * <p>
25 * <ul>
26 * <li>1.0 Class creation.</li>
27 * </ul>
28 *
29 * @author Andres Gomez Casanova <a
30 * href="mailto:a n g o c a at y a h o o dot c o m">(AngocA)</a>
31 * @version 1.0 20110529
32 * @since 1.0
33 */
34 public final class MgaipLogger extends SystemStreamLog {
35 /*
36 * (non-Javadoc)
37 *
38 * @see org.apache.maven.plugin.logging.SystemStreamLog#isDebugEnabled()
39 */
40 public boolean isDebugEnabled() {
41 return true;
42 }
43 }