add a "normal" state

This commit is contained in:
Jeff Carr 2025-09-06 19:21:21 -05:00
parent 867a4f973e
commit 9dbc7c6615
2 changed files with 3 additions and 1 deletions

View File

@ -42,6 +42,8 @@ enum ForgeMode {
MASTER = 0; // "release mode"
DEVEL = 1; // "patch mode"
USER = 2; // "work mode"
NORMAL = 3; // "normal mode" // use this when you are developing code
CLEAN = 4; // indicates "clean" was run
}
message ForgeConfigs { // `autogenpb:marshal` `autogenpb:nomutex`

View File

@ -28,7 +28,7 @@ func (f *Forge) LoadPatchsets() error {
log.Infof("LoadPatchsets() proto.Marshal() error %v\n", err)
return err
}
log.Infof("LoadPatchsets() found %d patches.\n", f.Patchsets.Len())
// log.Infof("LoadPatchsets() found %d patches.\n", f.Patchsets.Len())
return nil
}