Flask error logging file not updating on VPS
up vote
0
down vote
favorite
I am following this tutorial on Digitalocean to set up my web application. https://www.digitalocean.com/community/tutorials/how-to-serve-flask-applications-with-gunicorn-and-nginx-on-ubuntu-16-04
I can run my code on my local machine and get the detailed traceback error messages from the error log, i.e., "flask.log", but this file is not updating on the virtual private server I am using (Ubuntu-16-04). How can I get Flask's traceback error messages from my VPS?
The python environment I am using is Anaconda. And the following is the code I am using to create the error log file. Debug mode is false.
from flask import Flask
import logging
app = Flask(__name__)
app.config.from_object('project.settings')
filehandler = logging.FileHandler('flask.log')
filehandler.setLevel(logging.ERROR)
app.logger.setLevel(logging.ERROR)
app.logger.addHandler(filehandler)
python logging flask digital-ocean vps
add a comment |
up vote
0
down vote
favorite
I am following this tutorial on Digitalocean to set up my web application. https://www.digitalocean.com/community/tutorials/how-to-serve-flask-applications-with-gunicorn-and-nginx-on-ubuntu-16-04
I can run my code on my local machine and get the detailed traceback error messages from the error log, i.e., "flask.log", but this file is not updating on the virtual private server I am using (Ubuntu-16-04). How can I get Flask's traceback error messages from my VPS?
The python environment I am using is Anaconda. And the following is the code I am using to create the error log file. Debug mode is false.
from flask import Flask
import logging
app = Flask(__name__)
app.config.from_object('project.settings')
filehandler = logging.FileHandler('flask.log')
filehandler.setLevel(logging.ERROR)
app.logger.setLevel(logging.ERROR)
app.logger.addHandler(filehandler)
python logging flask digital-ocean vps
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I am following this tutorial on Digitalocean to set up my web application. https://www.digitalocean.com/community/tutorials/how-to-serve-flask-applications-with-gunicorn-and-nginx-on-ubuntu-16-04
I can run my code on my local machine and get the detailed traceback error messages from the error log, i.e., "flask.log", but this file is not updating on the virtual private server I am using (Ubuntu-16-04). How can I get Flask's traceback error messages from my VPS?
The python environment I am using is Anaconda. And the following is the code I am using to create the error log file. Debug mode is false.
from flask import Flask
import logging
app = Flask(__name__)
app.config.from_object('project.settings')
filehandler = logging.FileHandler('flask.log')
filehandler.setLevel(logging.ERROR)
app.logger.setLevel(logging.ERROR)
app.logger.addHandler(filehandler)
python logging flask digital-ocean vps
I am following this tutorial on Digitalocean to set up my web application. https://www.digitalocean.com/community/tutorials/how-to-serve-flask-applications-with-gunicorn-and-nginx-on-ubuntu-16-04
I can run my code on my local machine and get the detailed traceback error messages from the error log, i.e., "flask.log", but this file is not updating on the virtual private server I am using (Ubuntu-16-04). How can I get Flask's traceback error messages from my VPS?
The python environment I am using is Anaconda. And the following is the code I am using to create the error log file. Debug mode is false.
from flask import Flask
import logging
app = Flask(__name__)
app.config.from_object('project.settings')
filehandler = logging.FileHandler('flask.log')
filehandler.setLevel(logging.ERROR)
app.logger.setLevel(logging.ERROR)
app.logger.addHandler(filehandler)
python logging flask digital-ocean vps
python logging flask digital-ocean vps
asked Nov 21 at 5:39
renjie ge
13
13
add a comment |
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53405852%2fflask-error-logging-file-not-updating-on-vps%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown