Skip to content

Commit

Permalink
Reduce LocalStore log verbosity
Browse files Browse the repository at this point in the history
  • Loading branch information
javiertuya committed Dec 8, 2023
1 parent bd82559 commit 240e190
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions net/QACover/Translated/Giis.Qacover.Storage/LocalStore.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -94,12 +94,12 @@ private void putSchema(String queryKey, SchemaModel schema) {
*/
public QueryModel getQueryModel(String queryKey) {
String frules = FileUtil.fileRead(storeLocation, queryKey + ".xml", false);
log.debug("Try get QueryModel file from store: " + queryKey);
log.trace("Try get QueryModel file from store: " + queryKey);
if (frules == null) {
log.debug("QueryModel file has not been generated");
log.trace("QueryModel file has not been generated");
return null;
}
log.debug("QueryModel file found");
log.trace("QueryModel file found");
TdRules srules = new TdRulesXmlSerializer().deserialize(frules);
return new QueryModel(srules);
}
Expand Down

0 comments on commit 240e190

Please sign in to comment.