Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 801093
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T23:23:24+00:00 2026-05-14T23:23:24+00:00

Too bad I don’t have a server but a XP to serve some scheduled

  • 0

Too bad I don’t have a server but a XP to serve some scheduled ruby scripts. So, what’s the recommended way (gem/plug-in?) to write logs on Windows XP from ruby scripts?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T23:23:25+00:00Added an answer on May 14, 2026 at 11:23 pm

    Use the Logger standard library class:

    require 'logger'
    
    logger = Logger.new 'my.log'
    logger.info "Started."
    foo = 42
    logger.debug "foo is now #{foo}"
    begin
      foo = 1/0
    rescue Exception => ex
      logger.error "Caught exception: #{ex.inspect}"
    end
    logger.info "Finished."
    

    Output to my.log:

    # Logfile created on Tue May 18 14:55:35 +0200 2010 by logger.rb
    I, [2010-05-18T14:55:35.021048 #8832]  INFO -- : Started.
    D, [2010-05-18T14:55:35.021141 #8832] DEBUG -- : foo is now 42
    E, [2010-05-18T14:55:35.021231 #8832] ERROR -- : Caught exception: #<ZeroDivisionError: divided by 0>
    I, [2010-05-18T14:55:35.021283 #8832]  INFO -- : Finished.
    

    You can change the formatting any way you like it by subclassing Logger then
    override the format_message method:

    class MyLogger < Logger
      def format_message(severity, timestamp, progname, msg)
        sprintf "%s,%03d %7s: %s\n",
        timestamp.strftime("%Y-%m-%d %H:%M:%S"),
        (timestamp.usec / 1000).to_s,
        severity,
        msg
      end
    end
    
    logger = MyLogger.new 'my.log'
    ...
    

    Output:

    # Logfile created on Tue May 18 15:07:42 +0200 2010 by logger.rb
    2010-05-18 15:07:42,980    INFO: Started.
    2010-05-18 15:07:42,980   DEBUG: foo is now 42
    2010-05-18 15:07:42,980   ERROR: Caught exception: #<ZeroDivisionError: divided by 0>
    2010-05-18 15:07:42,980    INFO: Finished.
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hopefully I don't get flamed for this one too bad - I've tried my
I have a class that I think is too long. I don't really know
I am pretty new at programming, so please don't burn me too bad. I
Its too much code to paste here so, I have created demo please have
I too have a long running service using plugins and appdomains and am having
I am not too versed in C++, but I had the task of designing
I'm not too sure what's going on here but I'm trying to echo a
I am using the asp.net login control with sql server integration. I don't see
I am stuck on a simple yet vexing problem with basic geometry. Too bad
I have some Fortran 77 source files that I'm trying to convert from a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.