diff --git a/src/bdberl.erl b/src/bdberl.erl index e6b2451..f6e773c 100644 --- a/src/bdberl.erl +++ b/src/bdberl.erl @@ -548,7 +548,6 @@ transaction(Fun, Retries, Opts) -> ok -> try Fun() of abort -> - error_logger:info_msg("function requested abort"), ok = txn_abort(), {error, transaction_aborted}; @@ -568,7 +567,6 @@ transaction(Fun, Retries, Opts) -> transaction(Fun, R); _ : Reason -> - error_logger:info_msg("function threw non-lock error - ~p", [Reason]), ok = txn_abort(), {error, {transaction_failed, Reason}} end;