diff --git a/ts/index.ts b/ts/index.ts index 92918ee..ddeae6c 100644 --- a/ts/index.ts +++ b/ts/index.ts @@ -23,8 +23,8 @@ export class SmartlogSourceOra { this.started = false; } - public finishFail() { - this.oraInstance.fail(); + public finishFail(textArg?: string) { + this.oraInstance.fail(textArg); this.started = false; }