Skip to content

Commit fa1e060

Browse files
authored
Fixed a lyup in a log message
1 parent d96e723 commit fa1e060

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/main/java/org/lsc/plugins/connectors/executable/AbstractExecutableLdifService.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ private int execute(String[] runtime, String[] env, String input, StringBuffer d
117117
for (String parameter : runtime) {
118118
parametersStr.append(parameter).append(" ");
119119
}
120-
LOGGER.debug("Lauching '{}'", parametersStr.toString());
120+
LOGGER.debug("Launching '{}'", parametersStr.toString());
121121
}
122122
if(interpretor != null && interpretor == InterpretorType.CYGWIN) {
123123
List<String> cygwinRuntime = new ArrayList<String>();
@@ -283,3 +283,4 @@ public Collection<Class<? extends ConnectionType>> getSupportedConnectionType()
283283
return list;
284284
}
285285
}
286+

0 commit comments

Comments
 (0)