Questions
Find answers to frequently asked development questions. For information about Better Stack products, explore our docs.
How To Whitelist Better Uptime IPs in UFW
Learn how to whitelist Better Uptime IPs on UFW and prevent any false incident alerting.
How To Whitelist Better Uptime IPs in Digital Ocean
Learn how to whitelist Better Uptime IPs on Digital Ocean and prevent any false incident alerting.
How To Whitelist Better Uptime IPs and User Agent in Cloudflare
Learn how to whitelist Better Uptime IPs on Cloudflare and prevent any false incident alerting.
How To Write Logs To A File With Python?
Using Basic Configuration You can use basic config. If you configure the attribute filename, logs will be automatically saved to the file you specify. You can also configure the attribute filemode....
How To Use Logging In Multiple Modules?
It's recommended to have a logger defined in each module like this: import logging logger = logging.getLogger(name) Then in your main program, do the following: import logging.config logging.config...
How To Log Uncaught Exceptions In Python?
For this, you can use the sys.excepthook that allows us to attach a handler for any unhandled exception: Creating a logger logger = logging.getLogger(name) logging.basicConfig(filename='example.log...
How to Log to Stdout with Python?
Using Basic Configuration Python, by default, logs to a console. You can call the function on the module: import logging logging.warning("Warning.") OUTPUT WARNING:root:Warning. Python already prov...
How to log data as JSON with Python
How to Log Data As JSON With Python? The simplest way is to use a custom module.
How To Log All Requests From The Python Request Library?
You need to use urllib3 logger and set the log level to DEBUG: log = logging.getLogger('urllib3') log.setLevel(logging.DEBUG) To maximise the message you can get, set HTTPConnection.debuglevel to 1...
How To Disable Logging While Running Django Unit Tests?
By Disabling Tests At The Start Of The Application Suppose you want to do it the quick way. In that case, the following line of code will disable any log messages less severe or equal to CRITICAL: ...
How To Disable Logging From The Python Request Library?
You can change the log level of the logger taking care of these messages. Setting the level to WARNING will remove the request messages and keep warnings and errors: import logging logging.getLogge...
How To Color Python Logging Output?
Without External Module Create a new custom formatter: class CustomFormatter(logging.Formatter): then create variables for the colors. They are created as ASCII code for an escape character followe...
Where can I find MySQL logs in phpMyAdmin?
In the older version of the phpMyAdmin control panel, there is Binary log in which all logs are stored. This can be opened by clicking Status → Binary log In newer versions, the Status page looks l...
Where can I find error log files for PHP?
PHP stores error logs in /var/log/apache2 if PHP is an apache2 module. Shared hosts are often storing log files in your root directory /log subdirectory. If you are using cPanel, the master log is ...
Where are PostgreSQL logs stored?
PostgreSQL stores logs in the log files. Depending on your system, you can find the logs at the following locations: Ubuntu On Ubuntu and Ubuntu-like systems, the PostgreSQL log is stored in the /v...
Where are PHP logs stored?
PHP stores error logs in /var/log/apache2 if PHP is an apache2 module. Shared hosts are often storing log files in your root directory /log subdirectory. If you are using cPanel, the master log is ...
Where are MySQL logs stored?
The official distributions for individual UNIX/Linux platforms are typically script-based, with little or no interactive configuration during installation. Some installation packages (including Yum...
MySQL/Writing file error (Errcode 28)
If you have received an MySQL error with the error code and don’t know what the code means, you can use the perror command to display the text explanation of the error code. perror 28 Output: OS er...
Log all queries in MySQL
In MySQL, it is possible to log all queries that were executed. You can view them as a table or file. Output query history into a table To output executed queries into a table, run the following My...
How to show the last queries executed on MySQL?
In MySQL, it is possible to show the last queries that were executed. You can view them as a table or file. Output query history into a table To output executed queries into a table, run the follow...
Make your mark
Join the writer's program
Are you a developer and love writing and sharing your knowledge with the world? Join our guest writing program and get paid for writing amazing technical guides. We'll get them to the right readers that will appreciate them.
Write for us
Build on top of Better Stack
Write a script, app or project on top of Better Stack and share it with the world. Make a public repository and share it with us at our email.
[email protected]or submit a pull request and help us build better products for everyone.
See the full list of amazing projects on github
Thank you to everyone who
Here is to all the fantastic people that are contributing and sharing their amazing projects: Thank you!