I'm typesetting a natural deduction proof. These consist of several numbered statements along with justifications. I'm using the logicproof package, and a minimal example looks something like this:
\documentclass[article]
\usepackage{logicproof}
\begin{document}
text
\begin{logicproof}{0}
statement & justification
\end{logicproof}
It compiles into this (black bars show geometry of page): 
I'd like the proof to be aligned on the left (as with the rest of the text), but I can't see any mention of how to do this in the package documentation. I believe that the package uses tabular under the hood.
I've tried to redefine \center to hack around this, and the following code seems to do the trick - but I'm unsure if this is good practice or not.
\def\center{\trivlist\item\relax}
\def\endcenter{\endtrivlist}
Is there a better approach? Should I use \renewcommand instead?

