You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
INFO: 127.0.0.1:63354 - "GET / HTTP/1.1" 200 OK
--- Logging error ---
Traceback (most recent call last):
File "/Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/logging/__init__.py", line 1098, in emit
msg = self.format(record)
File "/Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/logging/__init__.py", line 942, in format
return fmt.format(record)
File "/Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/logging/__init__.py", line 681, in format
s = self.formatMessage(record)
File "/Users/gui/Documents/workspace/fastapi-celery/venv/lib/python3.10/site-packages/uvicorn/logging.py", line 92, in formatMessage
(
ValueError: not enough values to unpack (expected 5, got 0)
Call stack:
File "/Users/gui/Documents/workspace/fastapi-celery/project/main.py", line 37, in <module>
uvicorn.run(app=app, host="0.0.0.0", port=5000, log_level="debug")
File "/Users/gui/Documents/workspace/fastapi-celery/venv/lib/python3.10/site-packages/uvicorn/main.py", line 386, in run
server.run()
File "/Users/gui/Documents/workspace/fastapi-celery/venv/lib/python3.10/site-packages/uvicorn/server.py", line 49, in run
loop.run_until_complete(self.serve(sockets=sockets))
File "/Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/asyncio/base_events.py", line 628, in run_until_complete
self.run_forever()
File "/Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/asyncio/base_events.py", line 595, in run_forever
self._run_once()
File "/Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/asyncio/base_events.py", line 1881, in _run_once
handle._run()
File "/Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/asyncio/events.py", line 80, in _run
self._context.run(self._callback, *self._args)
File "/Users/gui/Documents/workspace/fastapi-celery/venv/lib/python3.10/site-packages/uvicorn/protocols/http/h11_impl.py", line 396, in run_asgi
result = await app(self.scope, self.receive, self.send)
File "/Users/gui/Documents/workspace/fastapi-celery/venv/lib/python3.10/site-packages/uvicorn/middleware/proxy_headers.py", line 45, in __call__
return await self.app(scope, receive, send)
File "/Users/gui/Documents/workspace/fastapi-celery/venv/lib/python3.10/site-packages/fastapi/applications.py", line 199, in __call__
await super().__call__(scope, receive, send)
File "/Users/gui/Documents/workspace/fastapi-celery/venv/lib/python3.10/site-packages/starlette/applications.py", line 111, in __call__
await self.middleware_stack(scope, receive, send)
File "/Users/gui/Documents/workspace/fastapi-celery/venv/lib/python3.10/site-packages/starlette/middleware/errors.py", line 159, in __call__
await self.app(scope, receive, _send)
File "/Users/gui/Documents/workspace/fastapi-celery/venv/lib/python3.10/site-packages/starlette/exceptions.py", line 71, in __call__
await self.app(scope, receive, sender)
File "/Users/gui/Documents/workspace/fastapi-celery/venv/lib/python3.10/site-packages/starlette/routing.py", line 566, in __call__
await route.handle(scope, receive, send)
File "/Users/gui/Documents/workspace/fastapi-celery/venv/lib/python3.10/site-packages/starlette/routing.py", line 227, in handle
await self.app(scope, receive, send)
File "/Users/gui/Documents/workspace/fastapi-celery/venv/lib/python3.10/site-packages/starlette/routing.py", line 41, in app
response = await func(request)
File "/Users/gui/Documents/workspace/fastapi-celery/venv/lib/python3.10/site-packages/fastapi/routing.py", line 201, in app
raw_response = await run_endpoint_function(
File "/Users/gui/Documents/workspace/fastapi-celery/venv/lib/python3.10/site-packages/fastapi/routing.py", line 148, in run_endpoint_function
return await dependant.call(**values)
File "/Users/gui/Documents/workspace/fastapi-celery/project/main.py", line 32, in home
logger.debug("test")
Message: 'test'
Arguments: ()
The message did logged, but occurred with error, I think it might be releate to logging format, can someon help me for that.
I found one discussion, use this still not working, #1450
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Use
TimedRotatingFileHandler
to save log, example:output:
The message did logged, but occurred with error, I think it might be releate to
logging format
, can someon help me for that.I found one discussion, use this still not working, #1450
Beta Was this translation helpful? Give feedback.
All reactions