diff options
author | Théophane Hufschmitt <7226587+thufschmitt@users.noreply.github.com> | 2023-03-31 12:06:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-31 12:06:10 +0200 |
commit | e32ca3cf16a421297a545607c95dbe9918505987 (patch) | |
tree | d5218e827f4bd8c56cfa084073c6d3ef2b9ea83a /src/libutil/logging.hh | |
parent | 623115fc0f265b74a60c67b58dff3442678fe841 (diff) | |
parent | 85a2d1d94fbb682d4ff1e85ee083fac55b6bc9cb (diff) |
Merge pull request #8018 from tweag/ssh-password-prompt
SSH: don't erase password prompt if it is displayed
Diffstat (limited to 'src/libutil/logging.hh')
-rw-r--r-- | src/libutil/logging.hh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libutil/logging.hh b/src/libutil/logging.hh index 59a707eef..1a37aea9e 100644 --- a/src/libutil/logging.hh +++ b/src/libutil/logging.hh @@ -72,6 +72,9 @@ public: virtual void stop() { }; + virtual void pause() { }; + virtual void resume() { }; + // Whether the logger prints the whole build log virtual bool isVerbose() { return false; } |