Changeset 3198

Show
Ignore:
Timestamp:
03/04/2010 02:44:51 PM (6 months ago)
Author:
jackpoz
Message:

MODIFIED: file.log is now opened in append mode so it will not be deleted at each arcemu-world restart.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/arcemu-shared/Log.cpp

    r3171 r3198  
    244244        { 
    245245                const char *filename = "file.log"; 
    246                 m_file = fopen(filename, "w"); 
     246                m_file = fopen(filename, "a"); 
    247247                if (m_file == NULL) 
    248248                {