Commit 5349b7fb authored by Yuanle Song's avatar Yuanle Song
Browse files

v0.9.6 bugfix: fix log dir in logger.conf

parent d52db441
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
(defproject python/lein-template "0.9.5"
(defproject python/lein-template "0.9.6"
  :description "lein template for a python project"
  :repositories [["snapshots"
                  {:url "http://devserv.game.yy.com/nexus/content/repositories/snapshots"
+3 −3
Original line number Diff line number Diff line
@@ -55,19 +55,19 @@ args=()
level=DEBUG
formatter=long
class=FileHandler
args=('/data2/log/{{name}}/{{name}}.log', 'a', 'utf-8', True)
args=('/var/log/{{name}}/{{name}}.log', 'a', 'utf-8', True)

[handler_file_yygame_debug]
level=DEBUG
formatter=long
class=FileHandler
args=('/data2/log/{{name}}/yygame-debug.log', 'a', 'utf-8', True)
args=('/var/log/{{name}}/yygame-debug.log', 'a', 'utf-8', True)

[handler_file_crit]
level=CRITICAL
formatter=long
class=FileHandler
args=('/data2/log/{{name}}/error.log', 'a', 'utf-8', True)
args=('/var/log/{{name}}/error.log', 'a', 'utf-8', True)

[formatters]
keys=simple,long,ts_seperated_message