diff --git a/FlippR-Driver/networking/FlippRServer.cpp b/FlippR-Driver/networking/FlippRServer.cpp index 91a99ec..b3cbd99 100644 --- a/FlippR-Driver/networking/FlippRServer.cpp +++ b/FlippR-Driver/networking/FlippRServer.cpp @@ -200,7 +200,7 @@ TCPServer* FlippRServer::build_input_server() if (socket_file.exists()) { socket_file.remove(); - logger().information("Seems that server is already running. Make sure that only one instance of server is running."); + //logger().information("Seems that server is already running. Make sure that only one instance of server is running."); } diff --git a/cli/main.py b/cli/main.py index 018c899..d1fec49 100644 --- a/cli/main.py +++ b/cli/main.py @@ -97,8 +97,9 @@ def main(): path = "/tmp/" in_path = path + "/S.flippR_driver.in" out_path = path + "/S.flippR_driver.out" + print("Input path: " + in_path + " output path " + out_path ) networking = Networking(out_path, in_path) print(networking) create_menu() -main() \ No newline at end of file +main()