RTALogger 0.1.3 → 0.1.4

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: 7150b28c7b37eef2f430e19bf5226f846c8aef4ea030392359a66c17ff077f90
4
- data.tar.gz: bae174a79a72f23ce047004e74d2b545ed56c0c70e181a18f076983bcb131c32
3
+ metadata.gz: bbb273e7ee1ae08716218cd1338f233c0b5af1d652934cae575b319f7a4f5c66
4
+ data.tar.gz: 010d8cc58971fa3252875c245d6b4deea9e5183ef122f17b6e403621e223f17c
5
5
  SHA512:
6
- metadata.gz: 66f2bdc747626b74e75ac868885455bf5391698a77add2c6a8a90d6e04815c77f351f47830291441b3f4387259fe92c51dbd11d810d7cfe78e4bd2b1c7d92fe3
7
- data.tar.gz: 2950a3a76bf71b56f0539e90ef2a71a7a8cdc173082c565a4d24e656bb1f90ff781d38598820f817d5d67f9594fa7a78bb690b61cb5ef36750724ed9772db63a
6
+ metadata.gz: c91009d62b8810a5f2930c43e16a132673fa31487bd81c8843a4072244ea893f52d542364587fc94c9c3cf6de49e90351b72d9074491e740a395466400e4a722
7
+ data.tar.gz: 0bd9f95d1a89cd1d0341f18f90e42e8fb0f1cffe11637d2f558e29a14a371e0380f18111ce2be208b7e8854ce9df1e2fb1d3e6da0b34ea5476090a9fdd97833a
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- RTALogger (0.1.3)
4
+ RTALogger (0.1.4)
5
5
  fluent-logger (~> 0.9)
6
6
  jbuilder (~> 2.10)
7
7
 
@@ -1,3 +1,3 @@
1
1
  module RTALogger
2
- VERSION = '0.1.3'.freeze
2
+ VERSION = '0.1.4'.freeze
3
3
  end
@@ -36,8 +36,8 @@ module RTALogger
36
36
  @flush_scheduler.run
37
37
  end
38
38
 
39
- def config_use_json_file(config_file_name)
40
- config_json = load_config_from_json_file(config_file_name)
39
+ def config_use_json_file(config_file_name, manager_name = '')
40
+ config_json = load_config_from_json_file(config_file_name, manager_name)
41
41
  apply_config(config_json)
42
42
  rescue StandardError => e
43
43
  puts e.message
@@ -45,8 +45,8 @@ module RTALogger
45
45
  @propagator.add_log_repository(LogFactory.new_log_repository_console)
46
46
  end
47
47
 
48
- def config_use_json_string(config_string)
49
- config_json = load_config_from_json_string(config_file_name)
48
+ def config_use_json_string(config_string, manager_name = '')
49
+ config_json = load_config_from_json_string(config_string, manager_name)
50
50
  apply_config(config_json)
51
51
  rescue StandardError => e
52
52
  puts e.message
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: RTALogger
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Babak Bahreini, RTA Backend Team