/// <summary> /// Adds multiple new LogEntry objects to the LogBuffer. /// </summary> /// <param name="list">The list of log entries to add</param> public void LogRange(List <LogEntry> list) { if (GlobalSettings.General.EnableBotLog || IsDebug) { LogBuffer.AddRange(list); } }