Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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.
```