Provider "logOwl" not supported - Could not resolve host: executor with status code 0
- 0
- Functions
If you set logOwl as your log driver in
_APP_LOGGING_PROVIDER=logOwl
although docker exec appwrite doctor says it's alright, the openruntimes-executor container will throw the error below whenever you try to deploy a function
Fatal error: Uncaught Exception: Provider "logOwl" not supported. in /usr/local/app/http.php:68
Stack trace:
#0 /usr/local/vendor/utopia-php/registry/src/Registry/Registry.php(75): {closure}()
#1 /usr/local/app/http.php(131): Utopia\Registry\Registry->get('logger')
#2 /usr/local/vendor/utopia-php/framework/src/Transaction.php(36): {closure}(Object(Utopia\Registry\Registry))
#3 /usr/local/app/http.php(1320): Utopia\Transaction->getResource('logger')
#4 [internal function]: {closure}(Object(Swoole\Http\Request), Object(Swoole\Http\Response))
#5 {main}
thrown in /usr/local/app/http.php on line 68
[2023-09-02 17:00:50 @1.0] WARNING Channel::~Channel() (ERRNO 10003): channel is destroyed, 1 consumers will be discarded
Disabling the logOwl driver seems to solve the problem for now.
It seems like that openruntimes-executor want the value to be lowercase
Try again but with lowercase
_APP_LOGGING_PROVIDER=logowl
Recommended threads
- Function domain not available
Hello, even tho in docs you clearly describe that every function has its domain, I can not see it anywhere in any of my projects. How do I reveal the url of th...
- Inquiry: How to Reduce Cold Start Durati...
Hey! I was using Python for the function runtime, but after reading that Go has the fastest runtime, I switched my code over to Go. However, I'm still seeing co...
- After a GET request is passed to functio...
Create execution in the console can normally retrieve the get parameters。WHy?