Giter Site home page Giter Site logo

timestamp about lograge HOT 7 CLOSED

roidrage avatar roidrage commented on July 24, 2024
timestamp

from lograge.

Comments (7)

pxlpnk avatar pxlpnk commented on July 24, 2024

Is this still an issue? If yes could you add some more information about lograge and rails versions?

I can not reproduce this with:

  • rails: 4.1.1
  • ruby: 2.1.2p95
  • ruby 1.9.3p545

from lograge.

abacha avatar abacha commented on July 24, 2024

yes its still an issue:

## application.rb
    config.lograge.enabled = true
    config.lograge.custom_options = lambda do |event|
      unwanted_keys = %w[format action controller utf8]
      params = event.payload[:params].reject { |key,_| unwanted_keys.include? key }
      {time: event.time, user: event.payload[:user], params: params}
    end

## Gemfile.lock
    lograge (0.3.0)
      actionpack (>= 3)
      activesupport (>= 3)
      railties (>= 3)
    rails (4.1.5)

from lograge.

pxlpnk avatar pxlpnk commented on July 24, 2024

I tried the same rails version and exactly your code. My timestamps looks like this:
method=GET path=/posts format=*/* controller=posts action=index status=200 duration=102.66 view=102.06 db=0.14 time=2014-09-22 20:58:16 +0200 user= params={}

Any idea how I could reproduce this?
Could it be that some other Gem is tampering with the representation of the time?

from lograge.

benlovell avatar benlovell commented on July 24, 2024

I've also not been able to reproduce this yet, I'd echo @pxlpnk's suspicions.

from lograge.

abacha avatar abacha commented on July 24, 2024

I got it:

[5] pry(main)> Time.now.to_s
=> "25/09/2014"
[6] pry(main)> Time.now.to_s(:db)
=> "2014-09-25 18:30:21"
[11] pry(main)> show-method Time#to_s

From: /home/duke/.rvm/gems/ruby-2.1.2@bigbang/gems/activesupport-4.1.6/lib/active_support/core_ext/time/conversions.rb @ line 48:
Owner: Time
Visibility: public
Number of lines: 7

def to_formatted_s(format = :default)
  if formatter = DATE_FORMATS[format]
    formatter.respond_to?(:call) ? formatter.call(self).to_s : strftime(formatter)
  else
    to_default_s
  end
end
[13] pry(main)> cd Time
[14] pry(Time):1> DATE_FORMATS
=> {:db=>"%Y-%m-%d %H:%M:%S",
  <...>
 :default=>"%d/%m/%Y"}

from lograge.

abacha avatar abacha commented on July 24, 2024

I fixed with this:

config.lograge.custom_options = lambda do |event|
      unwanted_keys = %w[format action controller utf8]
      params = event.payload[:params].reject { |key,_| unwanted_keys.include? key }
      {time: event.time.to_s(:db), user: event.payload[:user], params: params}
    end

from lograge.

mkreyman avatar mkreyman commented on July 24, 2024

@abacha, thank you for the fix! :)

from lograge.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.