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
parent
commit
0d5c206226
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      CHANGELOG.md
  2. 2
      apps/api/src/interceptors/performance-logging/performance-logging.service.ts

1
CHANGELOG.md

@ -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
apps/api/src/interceptors/performance-logging/performance-logging.service.ts

@ -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,

Loading…
Cancel
Save