GODT-2046: bridge-gui log is included in optional archive sent with bug reports.

This commit is contained in:
Xavier Michelon
2022-11-08 17:08:14 +01:00
committed by Romain LE JEUNE
parent 3b9a3aaad2
commit 19930f63e2
2 changed files with 19 additions and 1 deletions

View File

@ -101,3 +101,7 @@ func getLogName(version, revision string) string {
func MatchLogName(name string) bool {
return regexp.MustCompile(`^v.*\.log$`).MatchString(name)
}
func MatchGUILogName(name string) bool {
return regexp.MustCompile(`^gui_v.*\.log$`).MatchString(name)
}