uniq_logger 0.1.5 → 0.1.6
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile.lock +1 -1
- data/lib/uniq_logger/base.rb +2 -2
- data/lib/uniq_logger/version.rb +1 -1
- data/uniq_logger-0.1.5.gem +0 -0
- metadata +2 -1
data/Gemfile.lock
CHANGED
data/lib/uniq_logger/base.rb
CHANGED
@@ -10,9 +10,9 @@ module UniqLogger
|
|
10
10
|
|
11
11
|
def create(uniq_id, data_to_save=[])
|
12
12
|
if config["logfile_destination"] == "local"
|
13
|
-
create_local_log_entry(uniq_id, data_to_save)
|
13
|
+
return create_local_log_entry(uniq_id, data_to_save)
|
14
14
|
elsif config["logfile_destination"] == "remote"
|
15
|
-
create_remote_log_entry(uniq_id, data_to_save)
|
15
|
+
return create_remote_log_entry(uniq_id, data_to_save)
|
16
16
|
else
|
17
17
|
puts "logfile_destination is not set to [local,remote]"
|
18
18
|
return false
|
data/lib/uniq_logger/version.rb
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: uniq_logger
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.6
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -117,6 +117,7 @@ files:
|
|
117
117
|
- uniq_logger-0.1.1.gem
|
118
118
|
- uniq_logger-0.1.2.gem
|
119
119
|
- uniq_logger-0.1.4.gem
|
120
|
+
- uniq_logger-0.1.5.gem
|
120
121
|
- uniq_logger.gemspec
|
121
122
|
homepage: https://github.com/ikuseiGmbH/uniq_logger
|
122
123
|
licenses:
|