Add exception message on TradeControler log.

This commit is contained in:
MobiusDevelopment 2020-10-11 13:01:50 +00:00
parent 7da43f5399
commit c6915a8237
2 changed files with 2 additions and 2 deletions

View File

@ -462,7 +462,7 @@ public class TradeController
}
catch (Exception e)
{
LOGGER.warning("TradeController: Could not update Timer save in Buylist");
LOGGER.warning("TradeController: Could not update Timer save in Buylist. " + e);
}
}

View File

@ -462,7 +462,7 @@ public class TradeController
}
catch (Exception e)
{
LOGGER.warning("TradeController: Could not update Timer save in Buylist");
LOGGER.warning("TradeController: Could not update Timer save in Buylist. " + e);
}
}