diff options
| author | Dan Engelbrecht <[email protected]> | 2023-09-08 09:14:17 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-09-08 15:14:17 +0200 |
| commit | 80822c357e1dc6ddc98fa7ecd8e973faa9c81577 (patch) | |
| tree | 5471e0d1f0f800df745e16f53bed9da41e805170 /src/zen/zen.cpp | |
| parent | Extend http client (#387) (diff) | |
| download | archived-zen-80822c357e1dc6ddc98fa7ecd8e973faa9c81577.tar.xz archived-zen-80822c357e1dc6ddc98fa7ecd8e973faa9c81577.zip | |
multithread file realization in oplog-mirror (#388)
convert project store commands to use http client
use MakeCbObjectPayload everywhere in project store commands
Diffstat (limited to 'src/zen/zen.cpp')
| -rw-r--r-- | src/zen/zen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zen/zen.cpp b/src/zen/zen.cpp index f1cfe9796..10478cf44 100644 --- a/src/zen/zen.cpp +++ b/src/zen/zen.cpp @@ -439,7 +439,7 @@ main(int argc, char** argv) } catch (std::exception& Ex) { - printf("Exception caught from 'main': %s\n", Ex.what()); + printf("Error: %s\n", Ex.what()); return 10; } |