Difference between revisions of "Logging"

From Chessprogramming wiki
Jump to: navigation, search
(Created page with "'''Home * Programming * Logging''' border|right|thumb| Logging screen <ref>[[Timo Haupt watches GridGinkgo's c...")
 
Line 4: Line 4:
  
 
'''Logging''',<br/>
 
'''Logging''',<br/>
the recording of events taking place in the execution of a system or [[Program|program]] into a [https://en.wikipedia.org/wiki/Logfile logfile] in order to provide an [https://en.wikipedia.org/wiki/Audit_trail audit trail] that can be used to understand the activity of the system and to diagnose problems <ref>[https://en.wikipedia.org/wiki/Logfile Logfile from Wikipedia]</ref>. Inside a chess engine, logs include the [[Game Notation|game notation]] of a [[Chess Game|game played]] along with mode and state transitions, that is all [[Moves|moves]] and commands entered by the user or input from a control system or [[Chess Server|chess server]], as well as moves made by the program after searching and [[Pondering|pondering]], typically along with [[Forsyth-Edwards Notation|FEN]] and/or [[Graphics Programming#ASCIIDiagrams|ASCII diagram]] at the start of each [[Search|search]] and important events such as new [[Principal variation|principal variation]] with time, [[Depth|depth]], [[Score|score]], and various [[Search Statistics|search statistics]] and [[Time Management|time management]] issues during the search <ref>[http://www.talkchess.com/forum/viewtopic.php?t=48959 Symbolic: I/O handling and sample logfile] by [[Steven Edwards]], [[CCC]], August 14, 2013</ref>.
+
the recording of events taking place in the execution of a system or [[Program|program]] into a [https://en.wikipedia.org/wiki/Logfile logfile] in order to provide an [https://en.wikipedia.org/wiki/Audit_trail audit trail] that can be used to understand the activity of the system and to diagnose problems <ref>[https://en.wikipedia.org/wiki/Logfile Logfile from Wikipedia]</ref>. Inside a chess engine, logs include the [[Game Notation|game notation]] of a [[Chess Game|game played]] along with mode and state transitions, that is all [[Moves|moves]] and commands entered by the user or input from a control system or [[Chess Server|chess server]], as well as moves made by the program after searching and [[Pondering|pondering]], typically along with [[Forsyth-Edwards Notation|FEN]] and/or [[Graphics Programming#ASCIIDiagrams|ASCII diagram]] at the start of each [[Search|search]] and important events such as new [[Principal Variation|principal variation]] with time, [[Depth|depth]], [[Score|score]], and various [[Search Statistics|search statistics]] and [[Time Management|time management]] issues during the search <ref>[http://www.talkchess.com/forum/viewtopic.php?t=48959 Symbolic: I/O handling and sample logfile] by [[Steven Edwards]], [[CCC]], August 14, 2013</ref>.
  
 
=See also=
 
=See also=

Revision as of 15:02, 4 June 2018

Home * Programming * Logging

Logging screen [1]

Logging,
the recording of events taking place in the execution of a system or program into a logfile in order to provide an audit trail that can be used to understand the activity of the system and to diagnose problems [2]. Inside a chess engine, logs include the game notation of a game played along with mode and state transitions, that is all moves and commands entered by the user or input from a control system or chess server, as well as moves made by the program after searching and pondering, typically along with FEN and/or ASCII diagram at the start of each search and important events such as new principal variation with time, depth, score, and various search statistics and time management issues during the search [3].

See also

Forum Posts

1995 ...

2005 ...

2010 ...

2015 ...

External Links

Apache

[5]

Apache log4net
Apache log4cxx

Misc

References

Up one Level