diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2017-10-24T11·41+0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2017-10-24T12·05+0200 |
commit | fe9d2f974d41a943b5245dbadbff0d0adab42046 (patch) | |
tree | 3a3b76b9a176b5f862be3faee1453dab7df06d7e /src/libutil/logging.hh | |
parent | 0d59f1ca49c9f7f3b2edaadcf590360ec66a6257 (diff) |
Handle log messages from build-remote
This makes the progress indicator show statuses like "connecting to 'root@machine'".
Diffstat (limited to 'src/libutil/logging.hh')
-rw-r--r-- | src/libutil/logging.hh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/libutil/logging.hh b/src/libutil/logging.hh index 21898c03a276..70a9f5d86249 100644 --- a/src/libutil/logging.hh +++ b/src/libutil/logging.hh @@ -130,6 +130,11 @@ extern Logger * logger; Logger * makeDefaultLogger(); +Logger * makeJSONLogger(Logger & prevLogger); + +bool handleJSONLogMessage(const std::string & msg, + const Activity & act, std::map<ActivityId, Activity> & activities); + extern Verbosity verbosity; /* suppress msgs > this */ /* Print a message if the current log level is at least the specified |