rack_bugzscout 0.0.10 → 0.0.11
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/rack_bugzscout.rb +2 -0
- metadata +1 -1
data/lib/rack_bugzscout.rb
CHANGED
@@ -16,6 +16,7 @@ module Rack
|
|
16
16
|
@fogbugz_area = fogbugz_area
|
17
17
|
|
18
18
|
@template = ERB.new(TEMPLATE)
|
19
|
+
puts "init complete"
|
19
20
|
end
|
20
21
|
|
21
22
|
def call(env)
|
@@ -52,6 +53,7 @@ module Rack
|
|
52
53
|
end
|
53
54
|
rescue => error
|
54
55
|
# maybe we ought to log something here if things don't work out?
|
56
|
+
puts "error!"
|
55
57
|
end
|
56
58
|
end
|
57
59
|
|