Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
114 lines (86 loc) · 2.62 KB

File metadata and controls

114 lines (86 loc) · 2.62 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/*
AppleWin : An Apple //e emulator for Windows
Copyright (C) 1994-1996, Michael O'Brien
Copyright (C) 1999-2001, Oliver Schmidt
Copyright (C) 2002-2005, Tom Charlesworth
Copyright (C) 2006-2007, Tom Charlesworth, Michael Pohoreski, Nick Westgate
AppleWin is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
AppleWin is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with AppleWin; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/* Description: Log
*
* Author: Nick Westgate
*/
#include "StdAfx.h"
#include "Log.h"
#include <time.h>
FILE* g_fh = NULL;
#ifdef _WIN32
#define LOG_FILENAME "AppleWin.log"
#else
// save to /tmp as otherwise it creates a file in the current folder which can be a bit everywhere
// especially if the program is installed to /usr
#define LOG_FILENAME "/tmp/AppleWin.log"
#endif
//---------------------------------------------------------------------------
inline std::string GetTimeStamp()
{
time_t ltime;
time(&ltime);
#ifdef _WIN32
char ct[32];
ctime_s(ct, sizeof(ct), &ltime);
#else
char ctbuf[32];
const char* ct = ctime_r(&ltime, ctbuf);
#endif
return std::string(ct, 24);
}
void LogInit()
{
if (g_fh)
return;
g_fh = fopen(LOG_FILENAME, "a+t"); // Open log file (append & text mode)
if (!g_fh)
{
LogOutput("Failed to open logfile '%s'\n", LOG_FILENAME);
return;
}
setvbuf(g_fh, NULL, _IONBF, 0); // No buffering (so implicit fflush after every fprintf)
fprintf(g_fh, "*** Logging started: %s\n", GetTimeStamp().c_str());
}
void LogDone()
{
if (!g_fh)
return;
fprintf(g_fh,"*** Logging ended\n\n");
fclose(g_fh);
g_fh = NULL;
}
//---------------------------------------------------------------------------
void LogOutput(const char* format, ...)
{
va_list args;
va_start(args, format);
OutputDebugString(StrFormatV(format, args).c_str());
va_end(args);
}
//---------------------------------------------------------------------------
void LogFileOutput(const char* format, ...)
{
if (!g_fh)
return;
va_list args;
va_start(args, format);
vfprintf(g_fh, format, args);
va_end(args);
}
Morty Proxy This is a proxified and sanitized view of the page, visit original site.