Skip to content

Commit cf92a5f

Browse files
committed
Fix logging messages
1 parent c907867 commit cf92a5f

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,11 @@ Upgrades & updates
488488

489489
- Todo: repository class to manage dedicated model.
490490

491-
### v5.1.1 (last stable)
491+
### v5.1.2 (last stable)
492+
493+
- Fixed logging messages.
494+
495+
### v5.1.1
492496

493497
- Fixed method ```findAll```.
494498
- Updated endpoint logging level to ```debug``` and added client logging with level ```info```

src/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ public function call(string $name, string $method, array $parameters = [], array
280280
];
281281

282282
if ($this->logger) {
283-
$this->logger->info('Calling method {method} from {model}', $loggerContext);
283+
$this->logger->info('Calling method {name}::{method}', $loggerContext);
284284
}
285285

286286
try {

0 commit comments

Comments
 (0)