浏览代码

Remove debug print statement :P

ayn2op 2 年之前
父节点
当前提交
dcc843f8f1
共有 1 个文件被更改,包括 0 次插入3 次删除
  1. 0 3
      internal/config/config.go

+ 0 - 3
internal/config/config.go

@@ -1,7 +1,6 @@
 package config
 
 import (
-	"log"
 	"os"
 	"path/filepath"
 
@@ -61,7 +60,5 @@ func Load() (*Config, error) {
 		return nil, err
 	}
 
-	log.Println(cfg.Theme.MessagesText.ReplyIndicator)
-
 	return &cfg, nil
 }