Browse Source
Bugfix/log context formatting in performance logging service (#7121)
* Fix log context formatting
* Update changelog
pull/7115/head^2
Thomas Kaul
5 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
2 additions and
1 deletions
-
CHANGELOG.md
-
apps/api/src/interceptors/performance-logging/performance-logging.service.ts
|
|
|
@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
### Fixed |
|
|
|
|
|
|
|
- Fixed an issue with hourly market data updates not refreshing prices for asset profiles with `MANUAL` data source |
|
|
|
- Fixed an issue with the log context formatting in the performance logging service |
|
|
|
|
|
|
|
## 3.15.1 - 2026-06-23 |
|
|
|
|
|
|
|
|
|
|
|
@ -2,7 +2,7 @@ import { Injectable, Logger } from '@nestjs/common'; |
|
|
|
|
|
|
|
@Injectable() |
|
|
|
export class PerformanceLoggingService { |
|
|
|
private readonly logger = new Logger(PerformanceLoggingService.name); |
|
|
|
private readonly logger = new Logger(); |
|
|
|
|
|
|
|
public logPerformance({ |
|
|
|
className, |
|
|
|
|