Log Highlight
🔦 Plugin for Sublime Text 2/3, Log Highlight helps to view a log (any type) supporting customizable log syntax & color scheme, extensible severity levels, clickable links
Details
Installs
- Total 40K
- Win 20K
- Mac 14K
- Linux 6K
Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | Nov 6 | Nov 5 | Nov 4 | Nov 3 | Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | Oct 7 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 4 | 3 | 3 | 11 | 4 | 3 | 5 | 0 | 0 | 17 | 8 | 2 | 2 | 7 | 6 | 9 | 11 | 5 | 3 | 0 | 6 | 8 | 6 | 7 | 8 | 4 | 5 | 7 | 7 | 9 | 10 | 9 | 2 | 1 | 4 | 5 | 7 | 4 | 8 | 2 | 5 | 8 | 5 | 11 | 7 | 6 |
Mac | 4 | 2 | 1 | 2 | 2 | 5 | 5 | 0 | 0 | 8 | 2 | 1 | 0 | 9 | 8 | 3 | 4 | 3 | 1 | 3 | 3 | 6 | 9 | 7 | 6 | 2 | 2 | 5 | 7 | 4 | 3 | 6 | 2 | 4 | 4 | 3 | 7 | 5 | 7 | 3 | 0 | 4 | 6 | 4 | 4 | 1 |
Linux | 0 | 1 | 0 | 4 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 2 | 2 | 0 | 3 | 0 | 0 | 3 | 3 | 2 | 1 | 0 | 0 | 1 | 2 | 0 | 5 | 5 | 5 | 0 | 2 | 1 | 1 | 1 | 2 | 1 | 0 | 0 | 1 | 3 | 1 | 1 | 1 |
Readme
- Source
- raw.githubusercontent.com
Log Highlight for Sublime Text
Log Highlight helps to view a log (any type) with customizable error/warning syntax & color scheme & extensible severity levels. Open a log file (like .log) and run Log Highlight in the context menu or Log Highlight : Highlight Error/Warning in the command palette.
(Compile Log - auto-highlight off (summary panel is deprecated))
(Build Window - auto-highlight on)
(System Log - auto-highlight off)
Features
- Customizable Syntax & Color Scheme
- Extensible Severity Levels
- Separate log types : “compile”, “system”
- Support multiple kinds of logs with different options, severity levels, theme colors
- Add Bookmarks Automatically for Navigating Errors/Warnings with customizable icons
- Support Go To Position in a Log by
result_file_regex
- Search a Base Directory Automatically for Relative Path Link
- Auto Refresh for Multiple Logs
- Continuous Tracking for Multiple Logs
- Enable Build Window (Output Panel)
Customizable Syntax & Color Scheme
After changing syntax and color scheme in Log Highlight.sublime-settings, run Log Highlight: Generate Custom Syntax & Theme command. You may have to restart sublime text once.
Extensible Severity Levels
You can add, remove, change severity levels like debug/notice/emergency in Log Highlight.sublime-settings, run Log Highlight: Generate Custom Syntax & Theme command. You may have to restart sublime text once.
Separate Log Types
You can set the log type in settings
. “compile” type : link / bookmark can be activated
. “system” type : color-highlight only (fast)
Support multiple kinds of logs
You can set multiple kinds of logs with different log extension.
Bookmarks
When errors/warnings found, it will add bookmarks for them for each icon. Bookmark navigation is enabled(restored) from v1.8.0. You can use bookmark keys like F2.
Go To Position
By double-click, you can go to positions of links like "../../abc.cpp", 32
or ./abc.v line 234
in a log. For relative path, it may automatically search a base directory near the log file
More Flexible Style Syntax
You can highlight links and quotes inside “begin regex”, “end regex” and “match regex” by using special words {{{LINK}}}
, {{{QUOTE}}}
. It can be used for the following gcc style error/warning message : ./src/abc.cpp:40:2 error: unknown escape seque ...
Auto Refresh for Multiple Logs
When the log files are updated, it automatically refreshes the bookmarks, summary output panel. There's some inertial delays for smooth action.
Continuous Tracking for Multiple Logs
If there are open files which already log-highlighted when sublime text restart, it will track all again. (ST3 only)
Enable Build Window (Output Panel)
Log Highlight can be used for Build Window or Unsaved View. But relative path link won't be used because the absolute path is unknown. In order to use relative path, you should set like the following: output_view.settings().set('filepath', [PATH])
output_view is the handle of your output panel view.
Settings
Please, refer to Log Highlight.sublime-settings, Available Icons : Icon List
- Regular Expression Pattern in Settings
Usage : [ "begin regex", "end regex" ] or [ "match regex", "" ]
Caution : avoid OR '|' and separate them, it can make an unexpected result.
example)
Error-[SE] Syntax error :
./src/macros/uvm_object_defines.svh line: 764: token is 'for'
--> [ "^Error-\\[", "^\\s*[\\n]" ] // Error-[ ~ next empty line (multi-line)
error ../src/foo.cpp:40
--> [ "^(?i)error", "[\\r\\n]" ] // single line
../src/foo.cpp:40 error:
--> [ "^{{{LINK}}}?[^\\r\\n]*?(?i)error", "[\\r\\n]" ] // single line
- Restore Settings
Use Log Highlight: Erase Syntax & Theme in the command palette Or
Just remove Packages/User/Log Highlight
Donate
Thank you for donating. It is helpful to continue to improve the plug-in.
Issues
When you have an issue, tell me through https://github.com/poucotm/Log-Highlight/issues, or send me an e-mail poucotm@gmail.com