Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Loki-Afro committed Oct 28, 2024
1 parent 53cf66a commit d077ed5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/server/src/core/error/loggable/error.loggable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { ErrorUtils } from '../utils/error.utils';
export class ErrorLoggable implements Loggable {
readonly actualError: Error;

constructor(private readonly error: unknown, private readonly data?: LogMessageDataObject) {
constructor(private readonly error: unknown) {
if (this.error instanceof Error) {
this.actualError = <Error>error;
} else {
Expand Down

0 comments on commit d077ed5

Please sign in to comment.