I want to log queries to just one table.
I have found these
SET GLOBAL log_output = "FILE"; which is set by default.
SET GLOBAL general_log_file = "/path/to/your/logfile.log";
SET GLOBAL general_log = 'ON';
However this logs all queries.
There are questions on SO, but they are for total logging.