
git-svn-id: https://svn.code.sf.net/p/rathena/svn/athena@172 54d463be-8e91-2dee-dedb-b68131a5f0ec
9 lines
163 B
C
9 lines
163 B
C
#include <time.h>
|
|
|
|
void log_visit(char *query, char *ip)
|
|
{
|
|
time_t timer;
|
|
timer=time(NULL);
|
|
printf("%s - \"%s\" - %s", ip, query, asctime(localtime(&timer)));
|
|
}
|