fix: ascii logo was added (#4524)

ascii logo was added
This commit is contained in:
Volodymyr Yavdoshenko 2025-02-10 09:29:28 +02:00 committed by GitHub
parent 13313507bf
commit 386ab3902b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -649,6 +649,22 @@ void sigill_hdlr(int signo) {
}
void PrintBasicUsageInfo() {
std::cout << " .--::--. \n";
std::cout << " :+*=: =@@@@@@@@= :+*+: \n";
std::cout << " %@@@@@@%*=. =@@@@@@@@- .=*%@@@@@@# \n";
std::cout << " @@@@@@@@@@@@#+-. .%@@@@#. .-+#@@@@@@@@@@@% \n";
std::cout << " -@@@@@@@@@@@@@@@@*:#@@#:*@@@@@@@@@@@@@@@@- \n";
std::cout << " :+*********####-%@%%@%-####********++. \n";
std::cout << " .%@@@@@@@@@@@@@%:@@@@@@:@@@@@@@@@@@@@@% \n";
std::cout << " .@@@@@@@@%*+-: =@@@@= .:-+*%@@@@@@@%. \n";
std::cout << " =*+-: ###* .:-+*= \n";
std::cout << " %@@% \n";
std::cout << " *@@* \n";
std::cout << " +@@= \n";
std::cout << " :##: \n";
std::cout << " :@@: \n";
std::cout << " @@ \n";
std::cout << " .. \n";
std::cout << "* Logs will be written to the first available of the following paths:\n";
for (const auto& dir : google::GetLoggingDirectories()) {
const string_view maybe_slash = absl::EndsWith(dir, "/") ? "" : "/";