Skip to content

ZenClientCrashReporter

Zenarchist edited this page May 6, 2026 · 4 revisions

Source: https://github.com/ZenarchistCode/ZenClientCrashReporter

This mod is a server + client relay mod which allows players to voluntarily opt-in to send their client-side crash and error reports to the server whenever they login to the server.

It does not send any personal information - just error logs relevant to the server you are playing on.

The purpose of this mod is to allow advanced server admins to debug their own modpacks or troubleshoot issues players are experiencing on their server.

Usually, these client-side crash logs are invisible to the server admin and you would need to manually dig through the files to send the relevant ones to the server admin to help them diagnose and fix issues with their modlist.

It's probably not necessary to always have this mod active, and for many servers it will be useless - it's mainly useful for occasional mod cleanup for admins who know how to code and make their own mods.

To opt in on the client-side, players can Enable the CRASH REPORTER in the GAME SETTINGS under MOD: ZENARCHIST'S SETTINGS.

To enable this feature on the server-side, the server admin must open the config file and enable the mod to receive reports.

Received reports go into profiles/Zenarchist/Logs/ClientCrashLogs/ and are organized by folder unique to each player by their Steam ID.

Config

Config file: profiles/Zenarchist/Utilities/ZenClientCrashReporterConfig.json

{
    "ConfigVersion": "1.29.1", // Don't touch
    "EnableClientReports": 1, // Set to 1 to enable receiving reports
    "MaxDays": 3, // Max days worth of logs to request from client
    "IgnorePlayerIDs": [ // List of player BattlEye IDs to ignore reports from
        "BattlEyeIDs"
    ],
    "SuppressMatches": [] // Text list of crash logs to ignore (for errors you can't fix, eg. 3rd party mods, vanilla errors etc)
}

ZEN'S MOD WIKI

Setup Guide

General Information


Utilities

My utility style mods for debugging etc.

Game Mechanics

Mods which affect game mechanics:

Gear / Objects

Mods which add gear to the game:

Server-Side Mods

Mods which run purely server-side:

Mods Not In Modpack

My standalone mods

Clone this wiki locally