Change debug files from ergonomadic -> oragono

This commit is contained in:
Daniel Oaks 2017-10-15 12:48:10 +10:00
parent ef25b5b5c7
commit 16c4b4166a
2 changed files with 4 additions and 2 deletions

2
.gitignore vendored
View File

@ -106,3 +106,5 @@ _testmain.go
/oragono
/build/*
_test
oragono.prof
oragono.mprof

View File

@ -43,7 +43,7 @@ func debugHandler(server *Server, client *Client, msg ircmsg.IrcMessage) bool {
client.Notice(fmt.Sprintf("num goroutines: %d", count))
case "PROFILEHEAP":
profFile := "ergonomadic.mprof"
profFile := "oragono.mprof"
file, err := os.Create(profFile)
if err != nil {
client.Notice(fmt.Sprintf("error: %s", err))
@ -54,7 +54,7 @@ func debugHandler(server *Server, client *Client, msg ircmsg.IrcMessage) bool {
client.Notice(fmt.Sprintf("written to %s", profFile))
case "STARTCPUPROFILE":
profFile := "ergonomadic.prof"
profFile := "oragono.prof"
file, err := os.Create(profFile)
if err != nil {
client.Notice(fmt.Sprintf("error: %s", err))