Show if there's a problem planting an image

This commit is contained in:
Kwoth
2022-07-19 02:28:25 +02:00
parent 91da78a2ee
commit a0ba9be34e

View File

@@ -319,9 +319,10 @@ public class PlantPickService : INService, IExecNoCommand
return msg.Id; return msg.Id;
} }
} }
catch catch (Exception ex)
{ {
// if sending fails, return null as message id // if sending fails, return null as message id
Log.Warning(ex, "Sending plant message failed: {Message}", ex.Message);
return null; return null;
} }
} }