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

  • Home
  • SEARCH
  • 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 6686761
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T05:12:34+00:00 2026-05-26T05:12:34+00:00

I have this function: void Log::Write(string logline){ //2011-10-12 13:07:40 correct format time_t rawtime; struct

  • 0

I have this function:

void Log::Write(string logline){
//2011-10-12 13:07:40 correct format
    time_t rawtime;
    struct tm * timeinfo;
    time ( &rawtime );
    timeinfo = localtime ( &rawtime );
    m_stream.write( asctime (timeinfo), 24 );
    m_stream << " - " << logline << std::endl;
}

The output is like this:

Thu Oct 13 12:35:30 2011

but I wanna see the output like the comment section:

2011-10-12 13:07:40

How is it possible?

  • 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-26T05:12:35+00:00Added an answer on May 26, 2026 at 5:12 am

    It’s very possible. Look at the manpage for strftime(). In this case, you’d want:

    void Log::Write(string line) 
    {
        time_t rawtime;
        struct tm * timeinfo;
        char buffer [80];
    
        time ( &rawtime );
        timeinfo = localtime ( &rawtime );
    
        strftime (buffer,80,"%Y-%m-%d %H:%M:%S",timeinfo);
        m_stream << buffer << " - " << line << endl;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this function declaration and its defination: declaration void laodFromFile( string const& fileName,
I have this function declaration and definition.. definition void loadFromFile( string const& fileName, Frames&
I have a variable-argument function in C that looks roughly like this: void log(const
I have this function that loads an specific .log file: function loadTracks():void { tracksLoader.load(new
I have this function: void ToUpper(char * S) { while (*S!=0) { *S=(*S >=
Suppose I have this function: void my_test() { A a1 = A_factory_func(); A a2(A_factory_func());
I have seen a function whose prototype is: int myfunc(void** ppt) This function is
I have the following simple function: private void EnableDisable941ScheduleBButton() { if (this._uosDepositorFrequency.Value != null)
I have a function like this in actionscript3 private function uploadFile(event:MouseEvent):void { var uploader:URLRequest
Imagine I have a template function like this: template<typename Iterator> void myfunc(Iterator a, typename

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.