[FLINK-24244][python] Logging whether it's executed in loopback mode

This closes #17234.
diff --git a/flink-python/pyflink/fn_execution/beam/beam_worker_pool_service.py b/flink-python/pyflink/fn_execution/beam/beam_worker_pool_service.py
index 3d0e868..925695d 100644
--- a/flink-python/pyflink/fn_execution/beam/beam_worker_pool_service.py
+++ b/flink-python/pyflink/fn_execution/beam/beam_worker_pool_service.py
@@ -125,8 +125,11 @@
 
             # Send all logs to the runner.
             fn_log_handler = FnApiLogRecordHandler(logging_service_descriptor)
-            logging.getLogger().setLevel(logging.ERROR)
+            logging.getLogger().setLevel(logging.INFO)
+            # Remove all the built-in log handles
+            logging.getLogger().handlers = []
             logging.getLogger().addHandler(fn_log_handler)
+            logging.info("Starting up Python worker in loopback mode.")
         except Exception:
             _LOGGER.error(
                 "Failed to set up logging handler, continuing without.",