├── .gitignore ├── LICENSE.md ├── README.md ├── ReadMeExtras └── aggregrate_graph.gif ├── SampleLogs ├── Tanks_2019_4.csv └── Tanks_2019_4.log ├── SimpleEditorLogParser.sln └── SimpleEditorLogParser ├── Parser ├── AssetTimings.cs ├── ParserUtils.cs ├── SimpleParser.cs └── SupportedExtensions.cs ├── Program.cs └── SimpleEditorLogParser.csproj /.gitignore: -------------------------------------------------------------------------------- 1 | .vs 2 | obj 3 | bin 4 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Javier/SimpleEditorLogParser/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Javier/SimpleEditorLogParser/HEAD/README.md -------------------------------------------------------------------------------- /ReadMeExtras/aggregrate_graph.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Javier/SimpleEditorLogParser/HEAD/ReadMeExtras/aggregrate_graph.gif -------------------------------------------------------------------------------- /SampleLogs/Tanks_2019_4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Javier/SimpleEditorLogParser/HEAD/SampleLogs/Tanks_2019_4.csv -------------------------------------------------------------------------------- /SampleLogs/Tanks_2019_4.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Javier/SimpleEditorLogParser/HEAD/SampleLogs/Tanks_2019_4.log -------------------------------------------------------------------------------- /SimpleEditorLogParser.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Javier/SimpleEditorLogParser/HEAD/SimpleEditorLogParser.sln -------------------------------------------------------------------------------- /SimpleEditorLogParser/Parser/AssetTimings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Javier/SimpleEditorLogParser/HEAD/SimpleEditorLogParser/Parser/AssetTimings.cs -------------------------------------------------------------------------------- /SimpleEditorLogParser/Parser/ParserUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Javier/SimpleEditorLogParser/HEAD/SimpleEditorLogParser/Parser/ParserUtils.cs -------------------------------------------------------------------------------- /SimpleEditorLogParser/Parser/SimpleParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Javier/SimpleEditorLogParser/HEAD/SimpleEditorLogParser/Parser/SimpleParser.cs -------------------------------------------------------------------------------- /SimpleEditorLogParser/Parser/SupportedExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Javier/SimpleEditorLogParser/HEAD/SimpleEditorLogParser/Parser/SupportedExtensions.cs -------------------------------------------------------------------------------- /SimpleEditorLogParser/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Javier/SimpleEditorLogParser/HEAD/SimpleEditorLogParser/Program.cs -------------------------------------------------------------------------------- /SimpleEditorLogParser/SimpleEditorLogParser.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Javier/SimpleEditorLogParser/HEAD/SimpleEditorLogParser/SimpleEditorLogParser.csproj --------------------------------------------------------------------------------