diff --git a/src/komodo_utils.h b/src/komodo_utils.h index dbc4dc275..f495865b8 100644 --- a/src/komodo_utils.h +++ b/src/komodo_utils.h @@ -1262,6 +1262,7 @@ void komodo_configfile(char *symbol,uint16_t port) komodo_userpass(myusername,mypassword,fp); mapArgs["-rpcpassword"] = mypassword; mapArgs["-rpcusername"] = myusername; + fprintf(stderr,"myusername.(%s)\n",myusername); fclose(fp); } strcpy(fname,GetDataDir().string().c_str()); diff --git a/src/net.cpp b/src/net.cpp index 0a96d01f2..97ee9b071 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -115,6 +115,7 @@ void AddOneShot(string strDest) unsigned short GetListenPort() { + printf("Listenport.%u\n",Params().GetDefaultPort()); return (unsigned short)(GetArg("-port", Params().GetDefaultPort())); }