fixes error logging

This commit is contained in:
Shannon
2020-07-07 16:05:54 +10:00
parent 1f29778a23
commit 8814875b95
@@ -218,7 +218,7 @@ namespace Umbraco.Web.Compose
}
catch (Exception e)
{
_logger.Error<InstructionProcessTask>("Failed (will repeat).", e);
_logger.Error<InstructionProcessTask>(e, "Failed (will repeat).");
}
return true; // repeat
}