fix(client+server): dont show debug messages when not in debug mode
This commit is contained in:
parent
de1e931fe9
commit
74c01a613e
@ -164,7 +164,7 @@ class Client:
|
||||
payload: bytes = first_byte.to_bytes(1, "big") # type: ignore
|
||||
|
||||
print(
|
||||
f"myftp> - {self.protocol} - sent payload {bin(int.from_bytes(payload, byteorder='big'))[2:]} to the server" # type: ignore
|
||||
f"myftp> - {self.protocol} - sent payload {payload} to the server. Payload length is {len(payload)}" # type: ignore
|
||||
) if self.debug else None
|
||||
|
||||
if self.protocol == "UDP":
|
||||
@ -280,7 +280,7 @@ class Client:
|
||||
|
||||
print(
|
||||
f"myftp> - {self.protocol} - Filename: {filename}, File_size: {file_size} bytes"
|
||||
)
|
||||
) if self.debug else None
|
||||
|
||||
with open(os.path.join(self.directory_path, filename), "wb") as file:
|
||||
file.write(file_content)
|
||||
@ -312,7 +312,7 @@ class Client:
|
||||
|
||||
print(
|
||||
f"myftp> - {self.protocol} - Filename: {filename}, File_size: {file_size} bytes"
|
||||
)
|
||||
) if self.debug else None
|
||||
|
||||
with open(os.path.join(self.directory_path, filename), "wb") as file:
|
||||
file.write(file_content)
|
||||
|
@ -95,7 +95,7 @@ class Server:
|
||||
)
|
||||
|
||||
print(
|
||||
f"myftp> - {self.protocol} - Received message from client at {clientAddress}: {req_payload}" # type: ignore
|
||||
f"myftp> - {self.protocol} - Received message from client at {clientAddress}: {req_payload}. Payload length is {len(req_payload)}" # type: ignore
|
||||
) if self.debug else None
|
||||
|
||||
# help request handling
|
||||
@ -186,7 +186,7 @@ class Server:
|
||||
client_socket.sendall(res_payload) # type: ignore
|
||||
|
||||
print(
|
||||
f"myftp> - {self.protocol} - Sent message to client at {clientAddress}: {res_payload}" # type: ignore
|
||||
f"myftp> - {self.protocol} - Sent message to client at {clientAddress}: {res_payload}. Payload length is {len(res_payload)}" # type: ignore
|
||||
) if self.debug else None
|
||||
|
||||
except KeyboardInterrupt:
|
||||
|
Loading…
x
Reference in New Issue
Block a user