mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-26 14:05:58 +01:00
crashreporter: log tag
This commit is contained in:
parent
0283c498d6
commit
c241da5ea5
1 changed files with 15 additions and 14 deletions
|
@ -14,18 +14,19 @@
|
||||||
std::string getRandomMessage() {
|
std::string getRandomMessage() {
|
||||||
|
|
||||||
const std::vector<std::string> MESSAGES = {"Sorry, didn't mean to...",
|
const std::vector<std::string> MESSAGES = {"Sorry, didn't mean to...",
|
||||||
"This was an accident, I swear!",
|
"This was an accident, I swear!",
|
||||||
"Calm down, it was a misinput! MISINPUT!",
|
"Calm down, it was a misinput! MISINPUT!",
|
||||||
"Oops",
|
"Oops",
|
||||||
"Vaxry is going to be upset.",
|
"Vaxry is going to be upset.",
|
||||||
"Who tried dividing by zero?!",
|
"Who tried dividing by zero?!",
|
||||||
"Maybe you should try dusting your PC in the meantime?",
|
"Maybe you should try dusting your PC in the meantime?",
|
||||||
"I tried so hard, and got so far...",
|
"I tried so hard, and got so far...",
|
||||||
"I don't feel so good...",
|
"I don't feel so good...",
|
||||||
"*thud*",
|
"*thud*",
|
||||||
"Well this is awkward.",
|
"Well this is awkward.",
|
||||||
"\"stable\"",
|
"\"stable\"",
|
||||||
"I hope you didn't have any unsaved progress."};
|
"I hope you didn't have any unsaved progress.",
|
||||||
|
"All these computers..."};
|
||||||
|
|
||||||
std::random_device dev;
|
std::random_device dev;
|
||||||
std::mt19937 engine(dev());
|
std::mt19937 engine(dev());
|
||||||
|
@ -46,7 +47,7 @@ void CrashReporter::createAndSaveCrash(int sig) {
|
||||||
|
|
||||||
finalCrashReport += getFormat("Hyprland received signal %d (%s)\n\n", sig, strsignal(sig));
|
finalCrashReport += getFormat("Hyprland received signal %d (%s)\n\n", sig, strsignal(sig));
|
||||||
|
|
||||||
finalCrashReport += getFormat("Version: %s\n\n", GIT_COMMIT_HASH);
|
finalCrashReport += getFormat("Version: %s\nTag: %s\n\n", GIT_COMMIT_HASH, GIT_TAG);
|
||||||
|
|
||||||
if (g_pPluginSystem && !g_pPluginSystem->getAllPlugins().empty()) {
|
if (g_pPluginSystem && !g_pPluginSystem->getAllPlugins().empty()) {
|
||||||
finalCrashReport += "Hyprland seems to be running with plugins. This crash might not be Hyprland's fault.\nPlugins:\n";
|
finalCrashReport += "Hyprland seems to be running with plugins. This crash might not be Hyprland's fault.\nPlugins:\n";
|
||||||
|
@ -135,7 +136,7 @@ void CrashReporter::createAndSaveCrash(int sig) {
|
||||||
return;
|
return;
|
||||||
|
|
||||||
std::ofstream ofs;
|
std::ofstream ofs;
|
||||||
std::string path;
|
std::string path;
|
||||||
if (!CACHE_HOME) {
|
if (!CACHE_HOME) {
|
||||||
if (!std::filesystem::exists(std::string(HOME) + "/.hyprland")) {
|
if (!std::filesystem::exists(std::string(HOME) + "/.hyprland")) {
|
||||||
std::filesystem::create_directory(std::string(HOME) + "/.hyprland");
|
std::filesystem::create_directory(std::string(HOME) + "/.hyprland");
|
||||||
|
|
Loading…
Reference in a new issue