Skip to content

Commit

Permalink
Merge pull request #4 from ksgnextuple/development
Browse files Browse the repository at this point in the history
Added Print Statement
  • Loading branch information
ksgnextuple authored May 27, 2022
2 parents 4afef17 + eae1642 commit 8a8f1f7
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ public class GreetingController {

@GetMapping("/greeting")
public Greeting greeting(@RequestParam(value = "name", defaultValue = "World") String name) {
System.out.println("Hello");
return new Greeting(counter.incrementAndGet(), String.format(template, name));
}

Expand Down

0 comments on commit 8a8f1f7

Please sign in to comment.