public
Fork of KirinDave/fuzed
Description: A new revision of Fuzed, the Erlang-based frontend for web apps.
Clone URL: git://github.com/mojombo/fuzed.git
Search Repo:
disable fuzed_handler logging
mojombo (author)
Sat Jun 28 11:47:29 -0700 2008
commit  678b80cbbaa8cf22ea7f26bfc61a8f75bc344a9a
tree    d8527576d74f9878234361af9e0610aedfceece7
parent  8dbb25d66df381bcf479770cacff9328c0495d24
...
1
 
2
3
4
...
25
26
27
28
 
29
30
31
...
 
1
2
3
4
...
25
26
27
 
28
29
30
31
0
@@ -1,4 +1,4 @@
0
-LOG = true
0
+LOG = false
0
 
0
 # core
0
 require 'stringio'
0
@@ -25,7 +25,7 @@ module Rack
0
     class Fuzed
0
       def initialize(app, logfile)
0
         @app = app
0
- $logger = Logger.new(logfile)
0
+ $logger = Logger.new(logfile) if LOG
0
       end
0
       
0
       def service(request)

Comments

    No one has commented yet.