forked from calvinwilliams/iLOG3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog-EN.old
64 lines (47 loc) · 2.08 KB
/
ChangeLog-EN.old
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
ver 1.1.0 2018-01-18 calvin
* Add function family for ReOpenFileOutput
ver 1.0.15 2017-05-03 calvin
* Update LOGC
ver 1.0.14 2015-11-06 calvin
* Fixed a warn in LOG.c . thanks to wildnature
ver 1.0.13 2015-04-25 calvin
* Append NEWLINE after outputing hex log
ver 1.0.12 2014-12-14 calvin
* Fixed bug : logic wrong in LOGC
* Add function SetLogFileV
ver 1.0.11 2014-10-14 calvin
* Fixed bug : Swap:cached too high
* Support hpux
* Fixed a bug : not reused filename that deleted
* Fixed a bug : ignore when rotating file existed
* Disable rotate optimization algorithm for default
* Fixed compiling on AIX
ver 1.0.10 2014-08-17 calvin
* Enhance the stability of multithreaded environment
ver 1.0.9 2014-07-18 calvin
* add function SetLogOutput2,SetLogOutput2G
* Increase iLOG3 lite version : LOGC.h,LOGC.c
To who just want a simple log function to use, drag the two files to your project together
ver 1.0.8 2014-06-04 calvin
* add unix-styles function macros
* add english annotation in code
ver 1.0.7 2014-05-20 calvin
* add english doc
ver 1.0.6 2014-05-18 calvin
* add function SetOpenFlag,IsLogOpened for output callback function processing open flag
* log filename and config filename support env format string , exam : "$APP_LOGDIR$/app.log"
* fixed bug : filename can't parse correctly on output item in config ; thanks to found
ver 1.0.5 2014-05-11 calvin
* fixed a bug on windows 64bits : change "time( & (g->cache1_tv.tv_sec) ) ;" to "g->cache1_tv.tv_sec = time( NULL ) ;" ; thanks to MichaelZH
* fxied a bug on windows : change "CreateFileA( ... , FILE_SHARE_WRITE , ... )" to "CreateFileA( ... , FILE_SHARE_READ | FILE_SHARE_WRITE , ... )" for opening log file by editor ; thanks to MichaelZH
ver 1.0.4 2014-03-24 calvin
* change win32api CreateFile to CreateFileA for unicode ; thanks to shidapao
ver 1.0.3 2014-02-14 calvin
* add SetLogBeforeRotateFileFunc,SetLogAfterRotateFileFunc
* add SetFilterLogFunc
ver 1.0.2 2014-02-09 calvin
* add LOGCONF,LOGSCONF
ver 1.0.1 2014-01-19 calvin
* add LOGS
ver 1.0.0 2014-01-05 calvin
* create