Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/grype/pharo-logviewer
Very basic viewer of log files
https://github.com/grype/pharo-logviewer
logging logviewer pharo pharo-s smalltalk
Last synced: 19 days ago
JSON representation
Very basic viewer of log files
- Host: GitHub
- URL: https://github.com/grype/pharo-logviewer
- Owner: grype
- License: mit
- Created: 2020-04-23T20:44:53.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-04-23T21:20:20.000Z (almost 5 years ago)
- Last Synced: 2024-11-09T20:41:18.387Z (3 months ago)
- Topics: logging, logviewer, pharo, pharo-s, smalltalk
- Language: Smalltalk
- Size: 9.77 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Pharo-LogViewer
Very basic viewer of log files, utilizing GT Inspector and Roassal for inspecting and visualizing log entries.
There isn't any support for any particular log files, as the format varies greatly from project to project. Instead, there's a basic framework for quickly putting something together that parses log entries. This is done via several traits, each specializing in a particular part of an entry - like dates and times, source location, etc. See `XCGLogItem` for example.
## Installing
```smalltalk
Metacello new
baseline: 'LogViewer';
repository: 'github://grype/Pharo-LogViewer';
load.
```