找回密码
 注册
X系列官方授权正版
搜索
查看: 1059|回复: 5

[原创] FL运行错误记录(很可惜崩溃那部分被刷新掉了)高手帮忙看看

[复制链接]
发表于 2008-3-31 20:59:46 | 显示全部楼层 |阅读模式
[Error]
;EMAURER these four should remain as set.
log = $Window,65540     ; alert all asserts
log = $Window,-1,1      ; alert all errors (SEV_ERROR=1)

;EMAURER comment out lines below to vary the amount of output spew.

log = $Text, 65536, 5        ; 65536 means 'don't care' about kind value.
                                                ; 5 refers to TRACE_LEVEL_5. means report all messages
                                                ; with severity of 5 or less. lower the number, more severe
                                                ; the message. WARNINGS are at level 2. reduce for less spew.

;log = $Text, 'I'        ; incoming packet transmission
;log = $Text, 'O'        ; outgoing packet transmission
;log = $Text, 'i'        ; instance creation related messages (mass, MOI, equip)
;log = $Text, 'r'        ; significant attitude/reputation events (show results of AdjustAttitude calls)
;log = $Text, 'a'        ; detailed info regarding loading/unloading of archetypes.
log = $Text, 'c'        ; report server-side events sent to contollers
log = $Text, 'm'        ; mission-generated messages
log = $Text, 's'        ; log second thread activity
;log = $Text, 'f'        ; report file opens/closes
;log = $Text, 'e'        ; explosion/fuse messages
log = $Text, 'd'        ; damage messages
log = $Text, 'A'        ; reload console command messages

;----------------------------
; Error explanation
;
; log = where to display log message, kind of msg, severity of msg
; where: [no default]
        ; $window = popup dialog
        ; $text = debugger window
        ; filename = any filename
; kind: [default = -1]
        ; -1                                        // all kinds, distinguish display based on severity.
        ; ERR_RENDER        ='R',        // Render Pipeline
        ; ERR_NETWORK        ='n',        // SERVER.DLL
        ; ERR_WARN                ='w',        // minor general problems
        ; ERR_SPINST        ='i',        // instance creation messages
        ; ERR_REP                ='r',        // log significant attitude/reputation events
        ; ERR_ARCH                ='a',        // log unloads of archetypes.
        ; ERR_CTRL                ='c',        // log server-side events sent to contollers
        ; ERR_MISN                ='m',        // mission-generated messages
        ; ERR_ASYNC                ='s',        // log second thread activity
        ; ERR_FILEIO          ='f',        // print File open/close
        ; ERR_ASSERT        = 65540 // asserts
; severity: [ default = all severities ]
        ; the lower the number the more severe
        ; SEV_FATAL = 0         // Unrecoverable errors
        ; SEV_ERROR = 1         // Recoverable errors
        ; SEV_WARNING = 2         // Conditions which may indicate a problem, but are handled
        ; SEV_NOTICE  = 3   // Useful messages that are in release builds.
        ; SEV_TRACE_1 = 4   // Information useful for debugging or determining program flow
        ; SEV_TRACE_2..n = 5..n // Higher traces levels indicate more verbose information
发表于 2008-3-31 21:06:45 | 显示全部楼层
我已经打开了一些小错误的记录为了Debug,1.0是这样的

[Error]
; EMAURER these four should remain as set.
;log = fl-client-errors.log, 65540        ; alert all asserts
log = fl-client-errors.log, -1                ; alert all errors (SEV_ERROR=1)

; EMAURER comment out lines below to vary the amount of output spew.

;log = fl-client-errors.log, 65536        ; 65536 means 'don't care' about kind value.
                                                ; 5 refers to TRACE_LEVEL_5. means report all messages
                                                ; with severity of 5 or less. lower the number, more severe
                                                ; the message. WARNINGS are at level 2. reduce for less spew.

;log = fl-client-errors.log, 'R'                ; Render Pipeline
;log = fl-client-errors.log, 'n'                ; SERVER.DLL
;log = fl-client-errors.log, 'w'                ; minor general problems
;log = fl-client-errors.log, 'I'                ; incoming packet transmission
;log = fl-client-errors.log, 'O'                ; outgoing packet transmission
;log = fl-client-errors.log, 'i'                ; instance creation related messages (mass, MOI, equip)
;log = fl-client-errors.log, 'r'                ; significant attitude/reputation events (show results of AdjustAttitude calls)
;log = fl-client-errors.log, 'a'                ; detailed info regarding loading/unloading of archetypes.
;log = fl-client-errors.log, 'c'                ; report server-side events sent to contollers
;log = fl-client-errors.log, 'm'                ; mission-generated messages
;log = fl-client-errors.log, 's'                ; log second thread activity
;log = fl-client-errors.log, 'f'                ; report file opens/closes
;log = fl-client-errors.log, 'e'                ; explosion/fuse messages
;log = fl-client-errors.log, 'd'                ; damage messages
;log = fl-client-errors.log, 'A'                ; reload console command messages


;----------------------------
; Error explanation
;
; log = where to display log message, kind of msg, severity of msg

; where:
        ;[no default]
        ; $window = popup dialog
        ; $text = debugger window
        ; filename = any filename

; kind:
        ;[default = -1]
        ; -1                        // all kinds, distinguish display based on severity.
        ; ERR_RENDER ='R',        // Render Pipeline
        ; ERR_NETWORK ='n',        // SERVER.DLL
        ; ERR_WARN ='w',        // minor general problems
        ; ERR_SPINST ='i',        // instance creation messages
        ; ERR_REP ='r',                // log significant attitude/reputation events
        ; ERR_ARCH ='a',        // log unloads of archetypes.
        ; ERR_CTRL ='c',        // log server-side events sent to contollers
        ; ERR_MISN ='m',        // mission-generated messages
        ; ERR_ASYNC ='s',        // log second thread activity
        ; ERR_FILEIO ='f',        // print File open/close
        ; ERR_ASSERT = 65540        // asserts

; severity:
        ;[default = all severities]
        ; the lower the number the more severe
        ; SEV_FATAL = 0                // Unrecoverable errors
        ; SEV_ERROR = 1                // Recoverable errors
        ; SEV_WARNING = 2        // Conditions which may indicate a problem, but are handled
        ; SEV_NOTICE = 3        // Useful messages that are in release builds.
        ; SEV_TRACE_1 = 4        // Information useful for debugging or determining program flow
        ; SEV_TRACE_2..n = 5..n        // Higher traces levels indicate more verbose information
ns/closes
回复

使用道具 举报

发表于 2008-3-31 21:13:03 | 显示全部楼层
如果你运行1261还崩溃。。。。那真是比较郁闷的事情。。。。


1261我挂机3小时测试没有崩溃。。。。。
回复

使用道具 举报

发表于 2008-3-31 21:16:09 | 显示全部楼层
1260版本我从来没崩溃过。
回复

使用道具 举报

发表于 2008-3-31 22:51:03 | 显示全部楼层
完全看不懂……= =
回复

使用道具 举报

发表于 2008-4-1 10:35:13 | 显示全部楼层
我看懂了,一堆英文字母\数字和符号
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

关闭

站长推荐上一条 /1 下一条

Archiver|手机版|小黑屋|DeepTimes.NET 太空游戏站