Like Spotify Wrapped for bad code
BlameLog is a tool that provides a Spotify Wrapped-style overview of developers responsible for the most errors in your codebase using git-blame.
Requires Git to be installed on your system.
use RLeroi\BlameLog\BlameLog;
$results = BlameLog::calculateTotals('/Users/rleroi/dev/my-project/storage/logs/laravel.log');
Note: This operation may take a while, depending on the size of your log file.
The method returns an array representing the developers and their respective error counts:
[
"R Leroi" => 185,
"K Reeves" => 132,
"Randy Marsh" => 33,
]
This package is intended for fun purposes only. Please refrain from using it to make employment decisions. 😉