diff options
-rw-r--r-- | moonv4/moon_orchestrator/moon_orchestrator/api/slaves.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/moonv4/moon_orchestrator/moon_orchestrator/api/slaves.py b/moonv4/moon_orchestrator/moon_orchestrator/api/slaves.py index 66ddf256..9142a830 100644 --- a/moonv4/moon_orchestrator/moon_orchestrator/api/slaves.py +++ b/moonv4/moon_orchestrator/moon_orchestrator/api/slaves.py @@ -45,7 +45,9 @@ class Slaves(object): ctx.pop("method") ctx.pop("call_master") self.slaves[uuid] = ctx + LOG.info("New slave added: {}".format(ctx['name'])) return {"slaves": {uuid: ctx}} + LOG.warning("No name given for the new slave.") def get_slaves(self, ctx, args=None): """Get all the known slaves |