testa_logger 0.1.13 → 0.1.14

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 392ec3ccd72f4d52d615240dc7e973ac69e16eaf5f59673cfc0093e71de69881
4
- data.tar.gz: e3c65498f51ebd5c4f75c1468f7f4e0cdb1ac79a0035a8e8c922f096fb832231
3
+ metadata.gz: 1a925b10a67aa850c7b52f01d423b3c4f227ddd638f0c0180735752639a60649
4
+ data.tar.gz: 27924bc4702af164ab79646219d2f2545137789eddcd5bb66abb6a3104457f50
5
5
  SHA512:
6
- metadata.gz: 6cbfb98e8904580b1c9c00025091733b33e13acc58a00c52b9d427570b41651eb93ea467e71a9bd70f2d622c2564dfeff25c02e61d0b22d0e4ec74c5326426a3
7
- data.tar.gz: 4b2e44b86308dedc7bac95abb5b7677c7e42785c515cbf30f78bf3c1f606316a2429fce72deeab19dd0d8e48dc6ea78ab269899c21e2372f7e212ecfd8dc79b6
6
+ metadata.gz: 60452c35d41dc37ef106d5dc89d8926882877b94c3a5cc2f3b49656772476aae07417ebb39c67e6baa81c2bd82a21f95725eac2544721601c9273965d975a629
7
+ data.tar.gz: 813a62359cee488550bbc4e042a93cc6c1a34c1b8b19b50ce76ce91c8d486d537b9aca841c7229e3dc5e5335f986eb9a58938530c430b12c0cac6e4527d3d1a0
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- testa_logger (0.1.13)
4
+ testa_logger (0.1.14)
5
5
  activesupport
6
6
  awesome_print
7
7
  aws-sdk-s3
@@ -80,27 +80,27 @@ module TestaLogger
80
80
  options.formatter
81
81
  end
82
82
 
83
- def debug(tag = NO_TAG, *args, &block)
83
+ def debug(tag = "", *args, &block)
84
84
  add_log_to_queue(DEBUG, tag, args, &block)
85
85
  end
86
86
 
87
- def info(tag = NO_TAG, *args, &block)
87
+ def info(tag = "", *args, &block)
88
88
  add_log_to_queue(INFO, tag, args, &block)
89
89
  end
90
90
 
91
- def warn(tag = NO_TAG, *args, &block)
91
+ def warn(tag = "", *args, &block)
92
92
  add_log_to_queue(WARN, tag, args, &block)
93
93
  end
94
94
 
95
- def error(tag = NO_TAG, *args, &block)
95
+ def error(tag = "", *args, &block)
96
96
  add_log_to_queue(ERROR, tag, args, &block)
97
97
  end
98
98
 
99
- def fatal(tag = NO_TAG, *args, &block)
99
+ def fatal(tag = "", *args, &block)
100
100
  add_log_to_queue(FATAL, tag, args, &block)
101
101
  end
102
102
 
103
- def unknown(tag = NO_TAG, *args, &block)
103
+ def unknown(tag = "", *args, &block)
104
104
  add_log_to_queue(UNKNOWN, tag, args, &block)
105
105
  end
106
106
 
@@ -1,3 +1,3 @@
1
1
  module TestaLogger
2
- VERSION = "0.1.13"
2
+ VERSION = "0.1.14"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: testa_logger
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.13
4
+ version: 0.1.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - karlo.razumovic