1
0
Эх сурвалжийг харах

* Made def_gotshare putlog into DEBUG

svn: 1115
Bryan Drewery 22 жил өмнө
parent
commit
3c513cfa34
2 өөрчлөгдсөн 2 нэмэгдсэн , 1 устгасан
  1. 1 0
      doc/UPDATES
  2. 1 1
      src/userent.c

+ 1 - 0
doc/UPDATES

@@ -40,6 +40,7 @@ This is a summary of ChangeLog basically.
 36.Fixed a bug with bot links that was causing too many open files errors.
 37.Fixed a ton of unchecked buffers in cmds.c.
 38.All dcc cmds are now logged regardless if they are valid.
+39.Changed the log showing 'HUB: change BLAH' into debugging.
 
 1.1.7
 

+ 1 - 1
src/userent.c

@@ -121,7 +121,7 @@ int def_set(struct userrec *u, struct user_entry *e, void *buf)
 int def_gotshare(struct userrec *u, struct user_entry *e, char *data, int idx)
 {
 #ifdef HUB
-  putlog(LOG_CMDS, "@", "%s: change %s %s", dcc[idx].nick, e->type->name, u->handle);
+  putlog(LOG_DEBUG, "@", "%s: change %s %s", dcc[idx].nick, e->type->name, u->handle);
 #endif
   return e->type->set(u, e, data);
 }