mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-02 09:17:19 -04:00
commit
22ef2c3a85
@ -124,7 +124,7 @@ func Create(gitBranch, gitCommit string) *App {
|
||||
|
||||
app.Logger = d2util.NewLogger()
|
||||
app.Logger.SetPrefix(appLoggerPrefix)
|
||||
app.Logger.SetLevel(d2util.LogLevelNone)
|
||||
app.Logger.SetLevel(d2util.LogLevelDefault)
|
||||
|
||||
return app
|
||||
}
|
||||
@ -320,9 +320,6 @@ func (a *App) Run() error {
|
||||
}
|
||||
|
||||
logLevel := *a.Options.LogLevel
|
||||
if logLevel == d2util.LogLevelUnspecified {
|
||||
logLevel = a.config.LogLevel
|
||||
}
|
||||
|
||||
a.asset.SetLogLevel(logLevel)
|
||||
|
||||
|
@ -352,7 +352,7 @@ func (t *terminal) OutputRaw(text string, category d2enum.TermCategory) {
|
||||
|
||||
for _, line := range lines {
|
||||
// removes color token (this token ends with [0m )
|
||||
l := strings.Split(line, "[0m ")
|
||||
l := strings.Split(line, "\033[0m")
|
||||
line = l[len(l)-1]
|
||||
|
||||
t.outputHistory = append(t.outputHistory, termHistoryEntry{line, category})
|
||||
|
Loading…
Reference in New Issue
Block a user