mirror of
https://github.com/vale981/Hyprland
synced 2025-03-05 17:41:39 -05:00
crashreporter: skip first possibly cut off line in log tail
This commit is contained in:
parent
b86ed02d8a
commit
f40e382fc6
1 changed files with 1 additions and 1 deletions
|
@ -119,7 +119,7 @@ void CrashReporter::createAndSaveCrash(int sig) {
|
||||||
|
|
||||||
finalCrashReport += "\n\nLog tail:\n";
|
finalCrashReport += "\n\nLog tail:\n";
|
||||||
|
|
||||||
finalCrashReport += Debug::rollingLog;
|
finalCrashReport += Debug::rollingLog.substr(Debug::rollingLog.find("\n") + 1);
|
||||||
|
|
||||||
const auto HOME = getenv("HOME");
|
const auto HOME = getenv("HOME");
|
||||||
const auto CACHE_HOME = getenv("XDG_CACHE_HOME");
|
const auto CACHE_HOME = getenv("XDG_CACHE_HOME");
|
||||||
|
|
Loading…
Add table
Reference in a new issue