Skip to content

Commit 180fc98

Browse files
committed
Make compatible with JSignPDF 2.0.0
On JSignPDF 2.0.0 the log library was changed and the message: INFO Finished: Signature succesfully created. now return: INFO Finished: Signature succesfully created. without space between INFO and Finished. To make compatible I removed the word INFO
1 parent 292b83d commit 180fc98

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Sign/JSignService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public function sign(JSignParam $params)
2727
exec($commandSign, $output);
2828

2929
$out = json_encode($output);
30-
$messageSuccess = "INFO Finished: Signature succesfully created.";
30+
$messageSuccess = "Finished: Signature succesfully created.";
3131
$isSigned = strpos($out, $messageSuccess) !== false;
3232

3333
$this->throwIf(!$isSigned, "Error to sign PDF. $out");

0 commit comments

Comments
 (0)