Logs » History » Revision 6
Revision 5 (Per Amundsen, 07/27/2018 06:58 AM) → Revision 6/7 (Per Amundsen, 07/27/2018 06:58 AM)
_Added in 1.9.0_
*/logs [-defrxgc] [directory] [filename] [text]*
Opens the [[Logs_Dialog|Logs Manager]] and does a optional custom search.
[[Scripting_Wildcards|Wildcards]] can be used for all parts.
*Switches*
-d - Indicates directory is defined.
-e - Exclude sub directories in the search.
-f - Indicates filename is defined.
-r - Indicates text is a [[Scripting_Regex|regular expression]] instead of a [[Scripting_Wildcards|wildcard]].
-x - Use exact text match.
-g - Indicates filename is a [[Scripting_Regex|regular expression]] instead of a [[Scripting_Wildcards|wildcard]].
-c - Use exact filename match.
*Parameters*
[directory] - Log directory to search, used with -d.
[filename] - Filename to search, used with -f.
[text] - Log text to search.
*Êxample*
<pre>
; Open log folder with default log folder listing.
/logs
; Open log folder with custom folder and a regular expression matching all lines containing Hello.
/logs -dr "c:\logs folder" .*Hello.*
</pre>