coralogix_logger 0.0.15 → 0.0.16
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/coralogix_logger.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: dce55ae3527b3ee131ed3ccf5a86225435201163
|
|
4
|
+
data.tar.gz: fabf7e98f90d970ae2212f7ddc58d1cb1616bc3e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cb7056a37f1df6034ed6c574900c5774623740ace24bf574e77ed8815c0cfabce5b3d7a61467e5927476b3b12f8b59630a16ca03288a990eca8afb36db62ad6f
|
|
7
|
+
data.tar.gz: 4c34dd71b523260ea014b0f555535d44e4b77ea87909cbc7d4c4f721bc51253be4d21e17429b64ff74858db204eb11ceaf94e2093d644582c8e59a58744c3cec
|
data/lib/coralogix_logger.rb
CHANGED
|
@@ -170,7 +170,7 @@ module Coralogix
|
|
|
170
170
|
begin
|
|
171
171
|
# 0 1 2 3
|
|
172
172
|
#logger.info(Rails logger) -> Logger.broadcast(Rails Logger)-> add(This class) -> get_source_file(This method)
|
|
173
|
-
file_location_path = caller_locations(
|
|
173
|
+
file_location_path = caller_locations(5..5)[0].path
|
|
174
174
|
File.basename(file_location_path, File.extname(file_location_path))
|
|
175
175
|
rescue Exception => e
|
|
176
176
|
DebugLogger.error e.message
|