where is the log?
mysql> SHOW variables like '%general_log%';
+------------------+--------------------+
| Variable_name | Value |
+------------------+--------------------+
| general_log | ON |
| general_log_file | /tmp/your_path.log |
+------------------+--------------------+
do you want to change location?
mysql> SET GLOBAL general_log_file = 'file name';
source
share