Skip to content

Commit

Permalink
layers: show SCM switch with normal priority
Browse files Browse the repository at this point in the history
Switching a layer SCM is just like doing a fresh checkout. Use the same
severity.
  • Loading branch information
jkloetzke committed Oct 8, 2024
1 parent b752460 commit 2478135
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pym/bob/layers.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ async def __checkoutTask(self, verbose):

canSwitch = self.__scm.canSwitch(getScm(oldState["prop"]))
if canSwitch:
log("SWITCH: Layer '{}' .. ok".format(self.getName()), EXECUTED, INFO)
log("SWITCH: Layer '{}' .. ok".format(self.getName()), EXECUTED, NORMAL)
ret = await invoker.executeScmSwitch(self.__scm, oldState["prop"])
if ret == 0:
BobState().setLayerState(self.__layerDir, newState)
Expand Down

0 comments on commit 2478135

Please sign in to comment.