-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1483 from joelittlejohn/better-logging
Add useful debug logging when reading schemas and creating classes
- Loading branch information
Showing
9 changed files
with
123 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
65 changes: 65 additions & 0 deletions
65
jsonschema2pojo-core/src/main/java/org/jsonschema2pojo/NoopRuleLogger.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
/** | ||
* Copyright © 2010-2020 Nokia | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.jsonschema2pojo; | ||
|
||
public class NoopRuleLogger extends AbstractRuleLogger { | ||
|
||
@Override | ||
protected void doDebug(String msg) { | ||
} | ||
|
||
@Override | ||
protected void doError(String msg, Throwable e) { | ||
} | ||
|
||
@Override | ||
protected void doInfo(String msg) { | ||
} | ||
|
||
@Override | ||
protected void doTrace(String msg) { | ||
} | ||
|
||
@Override | ||
protected void doWarn(String msg, Throwable e) { | ||
} | ||
|
||
@Override | ||
public boolean isDebugEnabled() { | ||
return false; | ||
} | ||
|
||
@Override | ||
public boolean isErrorEnabled() { | ||
return false; | ||
} | ||
|
||
@Override | ||
public boolean isInfoEnabled() { | ||
return false; | ||
} | ||
|
||
@Override | ||
public boolean isTraceEnabled() { | ||
return false; | ||
} | ||
|
||
@Override | ||
public boolean isWarnEnabled() { | ||
return false; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<code_scheme name="Default" version="173"> | ||
<option name="ENABLE_SECOND_REFORMAT" value="true" /> | ||
<GroovyCodeStyleSettings> | ||
<option name="CLASS_COUNT_TO_USE_IMPORT_ON_DEMAND" value="99" /> | ||
<option name="NAMES_COUNT_TO_USE_IMPORT_ON_DEMAND" value="1" /> | ||
<option name="IMPORT_LAYOUT_TABLE"> | ||
<value> | ||
<package name="" withSubpackages="true" static="true" /> | ||
<emptyLine /> | ||
<package name="org.jsonschema2pojo" withSubpackages="true" static="false" /> | ||
<emptyLine /> | ||
<package name="" withSubpackages="true" static="false" /> | ||
<emptyLine /> | ||
</value> | ||
</option> | ||
</GroovyCodeStyleSettings> | ||
<JavaCodeStyleSettings> | ||
<option name="CLASS_COUNT_TO_USE_IMPORT_ON_DEMAND" value="99" /> | ||
<option name="NAMES_COUNT_TO_USE_IMPORT_ON_DEMAND" value="1" /> | ||
<option name="IMPORT_LAYOUT_TABLE"> | ||
<value> | ||
<package name="" withSubpackages="true" static="true" /> | ||
<emptyLine /> | ||
<package name="java" withSubpackages="true" static="false" /> | ||
<emptyLine /> | ||
<package name="org" withSubpackages="true" static="false" /> | ||
<emptyLine /> | ||
<package name="com" withSubpackages="true" static="false" /> | ||
<emptyLine /> | ||
<package name="" withSubpackages="true" static="false" /> | ||
<emptyLine /> | ||
</value> | ||
</option> | ||
</JavaCodeStyleSettings> | ||
</code_scheme> |