X-Git-Url: http://git.indexdata.com/?p=simpleserver-moved-to-github.git;a=blobdiff_plain;f=SimpleServer.xs;h=579ff91b3b71744c0673babf4f1ce475457790bf;hp=44384f717de18214cf01eec5adf6b357477432cc;hb=b88f2f7ab4c8c08d1a4552c05b52264b7b3e5ee4;hpb=046f92a4ede136e5263ab9d25c1a5bdc5055b4f0 diff --git a/SimpleServer.xs b/SimpleServer.xs index 44384f7..579ff91 100644 --- a/SimpleServer.xs +++ b/SimpleServer.xs @@ -1,5 +1,5 @@ /* - * $Id: SimpleServer.xs,v 1.34 2004-09-03 13:27:19 mike Exp $ + * $Id: SimpleServer.xs,v 1.35 2005-11-09 09:35:47 adam Exp $ * ---------------------------------------------------------------------- * * Copyright (c) 2000-2004, Index Data. @@ -1441,3 +1441,11 @@ ScanPartial() RETVAL +void +yazlog(arg) + SV *arg + CODE: + STRLEN len; + char *ptr; + ptr = SvPV(arg, len); + yaz_log(YLOG_LOG, "%.*s", len, ptr);