footprint-log 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.rdoc +7 -9
- data/lib/footprint/middleware.rb +0 -9
- data/lib/footprint/middleware/logger.rb +0 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9c8637e5e2c1b95ee77829c19ad6964dc2544d56
|
4
|
+
data.tar.gz: 06668e5f8f3ec83b851b640a284493469bde85ed
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9049f9476114f701c7660320daec216b0adca41452fac4ccb5c4208c7d581e053b1260ea242ecca35c7bfdda2b231a40840489652a7dcd11f277ab3c92a128f7
|
7
|
+
data.tar.gz: 18dfed8dd26460a1511a84f4c8d6e4b39226336bd9d45c13e72550f303b375e258f489334a2cc1af866f67bdf57a043982e0e27f42669c5eefc009ef3ea1ea15
|
data/README.rdoc
CHANGED
@@ -68,13 +68,11 @@ In that case we can do something like this:
|
|
68
68
|
|
69
69
|
Let's assume we want to use the following custom Logger class, initialized with log_device as STDOUT and level as 5.
|
70
70
|
|
71
|
-
class MyAwesomeLogger
|
71
|
+
class MyAwesomeLogger < Logger
|
72
72
|
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
@log_device = log_device
|
77
|
-
@level = level
|
73
|
+
def initialize logdev, level
|
74
|
+
super logdev, shift_age = 0, shift_size = 1048576
|
75
|
+
@level = level
|
78
76
|
end
|
79
77
|
|
80
78
|
end
|
@@ -88,17 +86,17 @@ In that case we can do something like this:
|
|
88
86
|
class MyApp < Sinatra
|
89
87
|
|
90
88
|
use Footprint::Middleware do
|
91
|
-
set MyAwesomeLogger, STDOUT,
|
89
|
+
set MyAwesomeLogger, STDOUT, 1
|
92
90
|
end
|
93
91
|
|
94
92
|
get '/' do
|
95
|
-
logger.info 'I can use a instance of MyAwesomeLogger class, initialized with STDOUT,
|
93
|
+
logger.info 'I can use a instance of MyAwesomeLogger class, initialized with STDOUT, 1 option by calling the logger method inside my route!'
|
96
94
|
end
|
97
95
|
|
98
96
|
end
|
99
97
|
|
100
98
|
|
101
|
-
== Contributing to
|
99
|
+
== Contributing to Footprint
|
102
100
|
|
103
101
|
* Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
|
104
102
|
* Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
|
data/lib/footprint/middleware.rb
CHANGED