We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c867355 commit c469a2dCopy full SHA for c469a2d
ezyhttp-server-core/src/main/java/com/tvd12/ezyhttp/server/core/request/SimpleRequestArguments.java
@@ -60,7 +60,7 @@ public class SimpleRequestArguments implements RequestArguments {
60
public <T> T getArgument(Object key) {
61
Object argument = arguments != null ? arguments.get(key) : null;
62
if (argument == null && debug) {
63
- LOGGER.error("there is no value for argment: {}", key);
+ LOGGER.error("there is no value for argument: {}", key);
64
}
65
return (T) argument;
66
0 commit comments