This commit is contained in:
Darius
2026-02-08 12:52:31 +01:00
parent e834725b1a
commit 6b4bd73b14
3 changed files with 5 additions and 5 deletions

6
dist/fastify.js vendored
View File

@@ -28,10 +28,10 @@ export class BaseService {
successful: true,
};
}
getErrorResult(error) {
logWarning(error);
getErrorResult(errorMessage, error) {
logWarning(errorMessage);
return {
result: error,
result: errorMessage,
successful: false,
};
}