From: Michal L. <mi...@lo...> - 2007-04-14 02:46:24
|
Tony Shadwick wrote: > I'm still trying to debug this...I turned on verbose logging of mysql, > hoping to find the answer to what's going on, but I'm afraid the logs > are somewhat greek to me: > > manager# cd /mysqlfs/ > manager# touch new > touch: new: No such file or directory > manager# cat /var/log/mysql.log > /usr/local/libexec/mysqld, Version: 5.0.37-log (FreeBSD port: > mysql-server-5.0.37). started with: Turn on MySQLfs logging instead. On the top of log.c it reads: //int log_types_mask = LOG_ERROR | LOG_INFO | LOG_DEBUG; int log_types_mask = LOG_ERROR | LOG_INFO; //int log_debug_mask = LOG_D_CALL | LOG_D_SQL | LOG_D_OTHER; //int log_debug_mask = LOG_D_CALL; int log_debug_mask = 0; Instead make it: int log_types_mask = LOG_ERROR | LOG_INFO | LOG_DEBUG; //int log_types_mask = LOG_ERROR | LOG_INFO; int log_debug_mask = LOG_D_CALL | LOG_D_SQL | LOG_D_OTHER; //int log_debug_mask = LOG_D_CALL; //int log_debug_mask = 0; Yes I know this should be a command line switch and not a compile time setting ;-) Michal |