We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1a3d6a5 + 2f614cf commit 8312c61Copy full SHA for 8312c61
docs/breaking-changes.asciidoc
@@ -1,4 +1,17 @@
1
[[breaking_changes]]
2
== Breaking changes from 5.x
3
4
-None! :)
+### Removal of ClientBuilder::defaultLogger()
5
+
6
+In 5.x there is the ability to create a default Logger object, which has been removed. It is now required to explicitly make a Logger object.
7
8
+5.x
9
+```
10
+$logger = ClientBuilder::defaultLogger('path_to_log_file');
11
12
13
+6.5
14
15
+$logger = new Logger('name');
16
+$logger->pushHandler(new StreamHandler('path_to_log_file', Logger::WARNING);
17
0 commit comments