libis-tools 0.9.24 → 0.9.25
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/lib/libis/tools/logger.rb +5 -5
- data/lib/libis/tools/version.rb +1 -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: f083609ed0179998247ee56ec2432182fb1bbd32
|
|
4
|
+
data.tar.gz: 8418e85cae3c4dfb7d6dc7f8c178da71bed58d2e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 84f969688fad37af3321f1b9631af1ad0b4deacac4cce100a9eee783775e55aaeec5c3175bd9b38b007f9f998ffb75039ecec08d4c73739db12b5164cc309cc8
|
|
7
|
+
data.tar.gz: 4e0109dca780dce283e969c3b749932fe218a6d790db1108ca1d976768a67206a920278cc01cc1a42bf5858179fa6ead7048b4e3e27bd7b8b490e41ccffe57c2
|
data/lib/libis/tools/logger.rb
CHANGED
|
@@ -67,7 +67,7 @@ module Libis
|
|
|
67
67
|
# @param [Array] args optional extra arguments.
|
|
68
68
|
# @!method(debug(msg, *args))
|
|
69
69
|
def debug(msg, *args)
|
|
70
|
-
message :DEBUG, msg, *args
|
|
70
|
+
self.message :DEBUG, msg, *args
|
|
71
71
|
end
|
|
72
72
|
|
|
73
73
|
# Send an info message to the logger.
|
|
@@ -76,7 +76,7 @@ module Libis
|
|
|
76
76
|
# @param (see #debug)
|
|
77
77
|
# @!method(info(msg, *args))
|
|
78
78
|
def info(msg, *args)
|
|
79
|
-
message :INFO, msg, *args
|
|
79
|
+
self.message :INFO, msg, *args
|
|
80
80
|
end
|
|
81
81
|
|
|
82
82
|
# Send a warning message to the logger.
|
|
@@ -85,7 +85,7 @@ module Libis
|
|
|
85
85
|
# @param (see #debug)
|
|
86
86
|
# @!method(warn(msg, *args))
|
|
87
87
|
def warn(msg, *args)
|
|
88
|
-
message :WARN, msg, *args
|
|
88
|
+
self.message :WARN, msg, *args
|
|
89
89
|
end
|
|
90
90
|
|
|
91
91
|
# Send an error message to the logger.
|
|
@@ -94,7 +94,7 @@ module Libis
|
|
|
94
94
|
# @param (see #debug)
|
|
95
95
|
# @!method(error(msg, *args))
|
|
96
96
|
def error(msg, *args)
|
|
97
|
-
message :ERROR, msg, *args
|
|
97
|
+
self.message :ERROR, msg, *args
|
|
98
98
|
end
|
|
99
99
|
|
|
100
100
|
# Send a fatal message to the logger.
|
|
@@ -103,7 +103,7 @@ module Libis
|
|
|
103
103
|
# @param (see #debug)
|
|
104
104
|
# @!method(fatal(msg, *args))
|
|
105
105
|
def fatal(msg, *args)
|
|
106
|
-
message :FATAL, msg, *args
|
|
106
|
+
self.message :FATAL, msg, *args
|
|
107
107
|
end
|
|
108
108
|
|
|
109
109
|
# The method that performs the code logging action.
|
data/lib/libis/tools/version.rb
CHANGED