From 48a54f81e59ea1e891666de825fd8ae962ce9d82 Mon Sep 17 00:00:00 2001 From: prryplatypus <25409753+prryplatypus@users.noreply.github.com> Date: Sat, 9 Oct 2021 19:51:50 +0200 Subject: [PATCH] Better message --- sanic/app.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/sanic/app.py b/sanic/app.py index c3f41449..0fbbbc0e 100644 --- a/sanic/app.py +++ b/sanic/app.py @@ -225,11 +225,11 @@ class Sanic(BaseSanic, metaclass=TouchUpMeta): # uvloop requested and installed, but opted-out during install elif strtobool(os.environ.get("SANIC_NO_UVLOOP", "no")): error_logger.warning( - "You are running the app using uvloop, but we've noticed " - "that the 'SANIC_NO_UVLOOP' environment variable " - "(used to opt-out of installing uvloop with Sanic) " - "is set to true. If you want to disable uvloop with " - "Sanic, set the 'USE_UVLOOP' configuration value to false." + "You are running the app using uvloop, but the " + "'SANIC_NO_UVLOOP' environment variable (used to opt-out " + "of installing uvloop with Sanic) is set to true. If you " + "want to disable uvloop with Sanic, set the 'USE_UVLOOP' " + "configuration value to false." ) self.router.ctx.app = self