Pharo-LogViewer

Description

Very basic viewer of log files

Details

Source
GitHub
Dialect
pharo (65% confidence)
License
MIT
Created
April 23, 2020
Updated
April 23, 2020
Topics
logging logviewer pharo pharo-s smalltalk

README excerpt

# 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.
```
← Back to results