diff options
Diffstat (limited to 'components/pm-subscription-handler/pmsh_service/pmsh_service.py')
-rwxr-xr-x | components/pm-subscription-handler/pmsh_service/pmsh_service.py | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/components/pm-subscription-handler/pmsh_service/pmsh_service.py b/components/pm-subscription-handler/pmsh_service/pmsh_service.py index 8832f570..d8a593fb 100755 --- a/components/pm-subscription-handler/pmsh_service/pmsh_service.py +++ b/components/pm-subscription-handler/pmsh_service/pmsh_service.py @@ -15,20 +15,17 @@ # # SPDX-License-Identifier: Apache-2.0 # ============LICENSE_END===================================================== - -import os import time import mod.pmsh_logging as logger def main(): - """Entrypoint""" - if "PROD_LOGGING" in os.environ: - logger.create_loggers() + logger.create_loggers() + while True: time.sleep(30) - logger.debug("Ni! Ni! Ni!") + logger.debug("He's not the messiah, he's a very naughty boy!") if __name__ == '__main__': |