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 7883c9e + 67795ed commit e667f7fCopy full SHA for e667f7f
CHANGELOG.md
@@ -1,3 +1,5 @@
1
+* fixed logger in EnvironCredentials
2
+
3
# 1.8.1
4
5
* fixed bug, when function Retry::backoffType always return SlowBackoff
src/Auth/EnvironCredentials.php
@@ -37,4 +37,14 @@ public function getName(): string
37
{
38
return $this->auth->getName();
39
}
40
41
+ public function logger()
42
+ {
43
+ return $this->auth->logger();
44
+ }
45
46
+ public function setLogger($logger)
47
48
+ $this->auth->setLogger($logger);
49
50
0 commit comments