We all know the bot gets stuck on this spot, but I don't think I've seen a report with full Trinity support log categories, so here it is
View attachment log.zip
View attachment log.zip
looks like a Trinity issue
i will forward this to Trinity dev
public bool IsStuck
{
get
{
if (DateTime.UtcNow.Subtract(_lastStuckCheck).TotalMilliseconds <= _checkIntervalMs)
{
Logger.LogNormal("IsStuck returned: {0}", _isStuck);
return _isStuck;
}
CheckForStuck();
Logger.LogNormal("IsStuck returned: {0}", _isStuck);
return _isStuck;
}
}