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 262023
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T22:28:52+00:00 2026-05-11T22:28:52+00:00

I want to log my log strings to a file. I implemented the following

  • 0

I want to log my log strings to a file.

I implemented the following method:

void QuietLog (NSString *format, ...) {
    if (format == nil) {
        printf("nil\n");
        return;
    }
    va_list argList;
    va_start(argList, format);

    NSMutableString *s = [[NSMutableString alloc] initWithFormat:format
                                                       arguments:argList];
    [s replaceOccurrencesOfString: @"%%"
                       withString: @"%%%%"
                          options: 0
                            range: NSMakeRange(0, [s length])];

    #ifdef LOGTOFILE_MODE
    NSData *dataToWrite = [s dataUsingEncoding: NSUTF8StringEncoding];
    [dataToWrite writeToFile: Log_FilePath atomically: YES];
    #else
    printf("%s\n", [s UTF8String]);
    #endif

    [s release];
    va_end(argList);
}

The writeToFile method replaces all the data that was in a file before with the last string. But I’d like to keep the previously added data and add to it a new string.

What is the problem with writeToFile? Why does it overwrites all existing data? How can I add new strings instead of overwriting the old ones?

Thanks.

  • 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-11T22:28:52+00:00Added an answer on May 11, 2026 at 10:28 pm

    How about using NSFileHandle, thus:

    NSData *dataToWrite = [s dataUsingEncoding: NSUTF8StringEncoding];
    NSFileHandle* outputFile = [NSFileHandle fileHandleForWritingAtPath:Log_FilePath];
    [outputFile seekToEndOfFile];
    [outputFile writeData:dataToWrite];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i want log linenumber to my log file, using log4net.the config details of log4net
I want to log/write all Javascript errors to a text file whenever an error
I want to implement OSGI bundle which can write error messages into log file.
I want to create a log file to track some operations in my Application.In
I want to output a header line in a log file and then a
i want to parse a text file that represents a log. i want it
I want to write log for each thread using log4j and log file name
I am attempting to return the first occurrence of multiple strings, ie, I want
I want to log all toasts events in android ics (4.0.3), but I was
i want to log messages from multiple classes. the problem is that currently i

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.