mirror of
https://github.com/dragonflydb/dragonfly.git
synced 2025-05-11 02:15:45 +02:00
fix: review comments were fixed
This commit is contained in:
parent
1ffbbd940e
commit
94a16ce687
1 changed files with 5 additions and 4 deletions
|
@ -669,14 +669,15 @@ void PrintBasicUsageInfo() {
|
|||
|
||||
for (const auto& dir : google::GetLoggingDirectories()) {
|
||||
const string_view maybe_slash = absl::EndsWith(dir, "/") ? "" : "/";
|
||||
output += std::string(dir) + std::string(maybe_slash) + "dragonfly.*\n";
|
||||
absl::StrAppend(&output, dir, maybe_slash, "dragonfly.*\n");
|
||||
}
|
||||
|
||||
output +=
|
||||
"* For the available flags type dragonfly [--help | --helpfull]\n"
|
||||
"* Documentation can be found at: https://www.dragonflydb.io/docs\n";
|
||||
absl::StrAppend(&output,
|
||||
"* For the available flags type dragonfly [--help | --helpfull]\n"
|
||||
"* Documentation can be found at: https://www.dragonflydb.io/docs\n");
|
||||
|
||||
std::cout << output;
|
||||
std::cout.flush();
|
||||
}
|
||||
|
||||
void ParseFlagsFromEnv() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue