diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-01-06 14:19:26 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-01-06 14:19:26 +0000 |
commit | 3adaf8788b65a84ec4266c6621d30679a95f546d (patch) | |
tree | da233eb45db1f482a4f2a86be9529c90edd76c8b /src/char/int_homun.c | |
parent | ad95c2ba955e42d74afffbb6b9b333f69a3f1b1e (diff) | |
download | hercules-3adaf8788b65a84ec4266c6621d30679a95f546d.tar.gz hercules-3adaf8788b65a84ec4266c6621d30679a95f546d.tar.bz2 hercules-3adaf8788b65a84ec4266c6621d30679a95f546d.tar.xz hercules-3adaf8788b65a84ec4266c6621d30679a95f546d.zip |
Modified showmsg code to not attach a timestamp to MSG_NONE-type messages, generated by ShowMessage(). It now works exactly like printf().
Removed/replaced all printf calls in the code.
Added a new flag to setting 'console_silent', for filtering debug messages.
Silenced the "Broken pipe found" and "Server running in debug mode" messages.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12020 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/char/int_homun.c')
-rw-r--r-- | src/char/int_homun.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/char/int_homun.c b/src/char/int_homun.c index be0dcd087..49434cd90 100644 --- a/src/char/int_homun.c +++ b/src/char/int_homun.c @@ -140,7 +140,6 @@ int inter_homun_init() c++; } fclose(fp); -// printf("int_homun: %s read done (%d homuns)\n",homun_txt,c); return 0; } @@ -170,7 +169,6 @@ int inter_homun_save() } homun_db->foreach(homun_db,inter_homun_save_sub,fp); lock_fclose(fp,homun_txt,&lock); -// printf("int_homun: %s saved.\n",homun_txt); return 0; } |