1 package com.github.searls.jasmine;
2
3 public class NullLog implements org.apache.maven.plugin.logging.Log {
4
5 @Override
6 public boolean isDebugEnabled() {
7 return false;
8 }
9
10 @Override
11 public void debug(CharSequence content) {
12 }
13
14 @Override
15 public void debug(CharSequence content, Throwable error) {
16 }
17
18 @Override
19 public void debug(Throwable error) {
20 }
21
22 @Override
23 public boolean isInfoEnabled() {
24 return false;
25 }
26
27 @Override
28 public void info(CharSequence content) {
29 }
30
31 @Override
32 public void info(CharSequence content, Throwable error) {
33 }
34
35 @Override
36 public void info(Throwable error) {
37 }
38
39 @Override
40 public boolean isWarnEnabled() {
41 return false;
42 }
43
44 @Override
45 public void warn(CharSequence content) {
46 }
47
48 @Override
49 public void warn(CharSequence content, Throwable error) {
50 }
51
52 @Override
53 public void warn(Throwable error) {
54 }
55
56 @Override
57 public boolean isErrorEnabled() {
58 return false;
59 }
60
61 @Override
62 public void error(CharSequence content) {
63 }
64
65 @Override
66 public void error(CharSequence content, Throwable error) {
67 }
68
69 @Override
70 public void error(Throwable error) {
71 }
72
73 }