Skip to content

Commit

Permalink
ascii logo was added
Browse files Browse the repository at this point in the history
  • Loading branch information
vyavdoshenko committed Feb 5, 2025
1 parent 4ba1142 commit 485ca65
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/server/dfly_main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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, "/") ? "" : "/";
Expand Down

0 comments on commit 485ca65

Please sign in to comment.