File tree Expand file tree Collapse file tree
src/main/java/expert/os/demos/travel/assistance/ai Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -24,12 +24,12 @@ public class CityTools {
2424 """ )
2525 public List <City > citiesByCountry (String country ) {
2626
27- LOGGER .info (() -> "TOOL citiesByCountry country=%s"
27+ LOGGER .info (() -> "[ TOOL] citiesByCountry country=%s"
2828 .formatted (country ));
2929
3030 List <City > cities = service .findByCountry (country );
3131
32- LOGGER .info (() -> "TOOL citiesByCountry resultCount=%d cities=%s"
32+ LOGGER .info (() -> "[ TOOL] citiesByCountry resultCount=%d cities=%s"
3333 .formatted (
3434 cities .size (),
3535 cities .stream ()
@@ -46,11 +46,8 @@ public List<City> citiesByCountry(String country) {
4646 """ )
4747 public List <City > cities () {
4848
49- LOGGER .info ("TOOL cities" );
50-
5149 List <City > cities = service .findAll ();
52-
53- LOGGER .info (() -> "TOOL cities resultCount=%d cities=%s"
50+ LOGGER .info (() -> "[TOOL] cities resultCount=%d cities=%s"
5451 .formatted (
5552 cities .size (),
5653 cities .stream ()
You can’t perform that action at this time.
0 commit comments