Modified Makefiles so that liblog_manager.so can be linked in in compilation of core/gateway.c modules/protocol/mysql_backend.c and in modules/routing readconnroute.c.

Modified source files by adding a few logging commands (skygw_log_write) to them, and by adding includes of necessary header files.
This commit is contained in:
vraatikka
2013-06-27 23:14:33 +03:00
parent 7bf99e48e7
commit 3af4089c87
6 changed files with 82 additions and 21 deletions

View File

@ -17,7 +17,10 @@
*/
#include "mysql_client_server_protocol.h"
#include <skygw_types.h>
#include <skygw_utils.h>
#include <log_manager.h>
/*
* MySQL Protocol module for handling the protocol between the gateway
* and the backend MySQL database.
@ -26,6 +29,8 @@
* Date Who Description
* 14/06/2013 Mark Riddoch Initial version
* 17/06/2013 Massimiliano Pinto Added Gateway To Backends routines
* 27/06/13 Vilho Raatikka Added skygw_log_write command as an example
* and necessary headers.
*/
static char *version_str = "V1.0.0";
@ -68,6 +73,9 @@ version()
void
ModuleInit()
{
skygw_log_write(NULL,
LOGFILE_MESSAGE,
"Initial MySQL Client Protcol module.");
fprintf(stderr, "Initial MySQL Client Protcol module.\n");
}