diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2017-08-15T13·31+0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2017-08-16T18·56+0200 |
commit | dff12b38f9d836fd0a58abc41286a9ad6b602aa5 (patch) | |
tree | 45b98bf221c07bf0bd34f1e87abb1dd2048875eb /src/libutil/logging.hh | |
parent | bf1f123b09ec7402b0565808619e11b5bfe6b16b (diff) |
Progress indicator: More improvements
Diffstat (limited to 'src/libutil/logging.hh')
-rw-r--r-- | src/libutil/logging.hh | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/libutil/logging.hh b/src/libutil/logging.hh index b6ab3d7d3b8f..097d486eff9c 100644 --- a/src/libutil/logging.hh +++ b/src/libutil/logging.hh @@ -19,6 +19,8 @@ typedef enum { actDownload = 101, actRealise = 102, actCopyPaths = 103, + actBuilds = 104, + actBuild = 105, } ActivityType; class Activity @@ -36,10 +38,7 @@ public: }; typedef enum { - evBuildCreated = 0, - evBuildStarted = 1, evBuildOutput = 2, - evBuildFinished = 3, evStartActivity = 1000, evStopActivity = 1001, |