Skip to content

Commit 7394d53

Browse files
committed
Change order of logging resolved path. (7635572)
Rationale: base + path = result
1 parent 7635572 commit 7394d53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

metafix/src/main/java/org/metafacture/metafix/Metafix.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ public String resolvePath(final String path) {
161161
}
162162

163163
final String resolvedPath = basePath.resolve(path).normalize().toString();
164-
LOG.debug("Resolved path: path = '{}', result = '{}', base = '{}'", path, resolvedPath, basePath);
164+
LOG.debug("Resolved path: base = '{}', path = '{}', result = '{}'", basePath, path, resolvedPath);
165165

166166
return resolvedPath;
167167
}

0 commit comments

Comments
 (0)