Skip to content

Commit 06d5432

Browse files
authored
Merge pull request #276 from mrubanov/warningFix
Downgrade the binary model load failure message
2 parents 0d959e5 + a69f829 commit 06d5432

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/resource/persistence/DirectLinkingResourceStorageLoadable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public void loadIntoResource(final StorageAwareResource resource, final Resource
9696
// CHECKSTYLE:OFF
9797
} catch (IOException | RuntimeException e) {
9898
// CHECKSTYLE:ON
99-
LOG.warn("Error loading " + resource.getURI() + " from binary storage", e); //$NON-NLS-1$ //$NON-NLS-2$
99+
LOG.info("Error loading " + resource.getURI() + " from binary storage", e); //$NON-NLS-1$ //$NON-NLS-2$
100100
if (e instanceof IOException) { // NOPMD
101101
throw e;
102102
}

0 commit comments

Comments
 (0)