Skip to content

Commit

Permalink
Fix inline logging example (#1523)
Browse files Browse the repository at this point in the history
  • Loading branch information
stefano-ottolenghi authored Jan 29, 2024
1 parent 100762f commit e3ebb1f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions driver/src/main/java/org/neo4j/driver/Logging.java
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@
* Example of driver configuration with SLF4J logging:
* <pre>
* {@code
* Driver driver = GraphDatabase.driver("bolt://localhost:7687",
* Driver driver = GraphDatabase.driver("neo4j://localhost:7687",
* AuthTokens.basic("neo4j", "password"),
* Config.build().withLogging(Logging.slf4j()).toConfig());
* Config.builder().withLogging(Logging.slf4j()).build());
* }
* </pre>
*
Expand Down

0 comments on commit e3ebb1f

Please sign in to comment.