func init()

in backend/analyzer/entities/rider.backend.log.go [14:69]


func init() {
	CurrentAnalyzer.AddDynamicEntity(analyzer.DynamicEntity{
		Name:                  "Rider Backend Log",
		ConvertPathToLogs:     parseRiderBackendLog,
		CheckPath:             isRiderBackendLog,
		CheckIgnoredPath:      isIgnoredRiderBackendFile,
		DefaultVisibility:     isBackendLogVisible,
		GetDisplayName:        getDisplayName,
		LineHighlightingColor: "#58c0f1",
	})
	CurrentAnalyzer.AddDynamicEntity(analyzer.DynamicEntity{
		Name:                  "Rider DebuggerWorker",
		ConvertPathToLogs:     parseRiderBackendLog,
		CheckPath:             isRiderDebuggerWorkerLog,
		CheckIgnoredPath:      isIgnoredRiderBackendFile,
		DefaultVisibility:     isPathVisible,
		GetDisplayName:        getDisplayName,
		LineHighlightingColor: "#58c0f1",
	})
	CurrentAnalyzer.AddDynamicEntity(analyzer.DynamicEntity{
		Name:                  "Rider RoslynWorker",
		ConvertPathToLogs:     parseRiderBackendLog,
		CheckPath:             isRiderRoslynWorkerLog,
		CheckIgnoredPath:      isIgnoredRiderBackendFile,
		DefaultVisibility:     isPathVisible,
		GetDisplayName:        getDisplayName,
		LineHighlightingColor: "#58c0f1",
	})
	CurrentAnalyzer.AddDynamicEntity(analyzer.DynamicEntity{
		Name:                  "Rider SolutionBuilder",
		ConvertPathToLogs:     parseRiderBackendLog,
		CheckPath:             isRiderSolutionBuilderLog,
		CheckIgnoredPath:      isIgnoredRiderBackendFile,
		DefaultVisibility:     isPathVisible,
		GetDisplayName:        getDisplayName,
		LineHighlightingColor: "#58c0f1",
	})
	CurrentAnalyzer.AddDynamicEntity(analyzer.DynamicEntity{
		Name:                  "Rider UnitTestLogs",
		ConvertPathToLogs:     parseRiderBackendLog,
		CheckPath:             isRiderUnitTestLog,
		CheckIgnoredPath:      isIgnoredRiderBackendFile,
		DefaultVisibility:     isPathVisible,
		GetDisplayName:        getDisplayName,
		LineHighlightingColor: "#58c0f1",
	})
	CurrentAnalyzer.AddDynamicEntity(analyzer.DynamicEntity{
		Name:                  "Rider MsBuildTask",
		ConvertPathToLogs:     parseRiderBackendLog,
		CheckPath:             isRiderMsBuildTaskLog,
		CheckIgnoredPath:      isIgnoredRiderBackendFile,
		DefaultVisibility:     isPathVisible,
		GetDisplayName:        getDisplayName,
		LineHighlightingColor: "#58c0f1",
	})
}