2024-09-17 19:53:17 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Windows.Documents;
|
|
|
|
|
|
|
|
|
|
namespace EliteBGS;
|
2022-11-24 19:38:19 +01:00
|
|
|
|
|
|
|
|
|
public class GenericDiscordLog : DiscordLogGenerator {
|
|
|
|
|
public override string ToString() {
|
2024-05-02 20:07:10 +02:00
|
|
|
|
return "Generic";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override string Name {
|
|
|
|
|
get { return "Generic"; }
|
2022-11-24 19:38:19 +01:00
|
|
|
|
}
|
2024-09-17 19:53:17 +02:00
|
|
|
|
|
|
|
|
|
public override string[] SplitLog(string log, int maxcount = 2000) {
|
|
|
|
|
return SplitLogWithHeader(log, "**Date:**", maxcount);
|
|
|
|
|
}
|
2022-11-24 19:38:19 +01:00
|
|
|
|
}
|