hmrc / service-manager

A python tool to manage developing and testing with lots of microservices
Apache License 2.0
58 stars 37 forks source link

Order of service start log statements #43

Closed tonytw1 closed 8 years ago

tonytw1 commented 8 years ago

In the case of services which are overridden to always use release versions, the console out logging can be slightly misleading as to which version actually started up.

ie. Service 'MYSERVICE' has been overridden to always use 'RELEASE' version Starting 'MYSERVICE' from SNAPSHOT...

This logging is trying to indicate that a snapshot was request but a release version was actually started. Reversing the order which these lines appear in the console log would make it clearer that that actually happened.

ie. Starting 'MYSERVICE' from SNAPSHOT... Service 'MYSERVICE' has been overridden to always use 'RELEASE' version