diff --git a/include/core/server.hpp b/include/core/server.hpp index bfefe28..5db9f1f 100644 --- a/include/core/server.hpp +++ b/include/core/server.hpp @@ -6,7 +6,7 @@ /* By: rparodi +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/05/13 11:06:56 by rparodi #+# #+# */ -/* Updated: 2025/05/13 12:54:02 by rparodi ### ########.fr */ +/* Updated: 2025/05/13 13:04:29 by rparodi ### ########.fr */ /* */ /* ************************************************************************** */ diff --git a/sources/core/check.cpp b/sources/core/check.cpp index efa33b3..cacf7e8 100644 --- a/sources/core/check.cpp +++ b/sources/core/check.cpp @@ -6,7 +6,7 @@ /* By: rparodi +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/05/13 11:25:04 by rparodi #+# #+# */ -/* Updated: 2025/05/13 11:59:01 by rparodi ### ########.fr */ +/* Updated: 2025/05/13 14:14:44 by rparodi ### ########.fr */ /* */ /* ************************************************************************** */ diff --git a/sources/core/server.cpp b/sources/core/server.cpp index 003047f..8501284 100644 --- a/sources/core/server.cpp +++ b/sources/core/server.cpp @@ -6,7 +6,7 @@ /* By: rparodi +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/05/13 11:11:07 by rparodi #+# #+# */ -/* Updated: 2025/05/13 12:55:21 by rparodi ### ########.fr */ +/* Updated: 2025/05/13 13:05:07 by rparodi ### ########.fr */ /* */ /* ************************************************************************** */ @@ -43,9 +43,10 @@ Server::~Server() { } void Server::showInfo() const { - std::cout << CLR_GREY << "IRCSettings:" << CLR_RESET << std::endl; - std::cout << CLR_GREY << "\t- Port:\t\t" << CLR_GREEN << this->_port << CLR_RESET << std::endl; - std::cout << CLR_GREY << "\t- Password:\t" << CLR_GREEN << this->_password << CLR_RESET << std::endl; + std::cout << std::endl; + std::cout << CLR_BLUE << "IRCSettings:" << CLR_RESET << std::endl; + std::cout << CLR_BLUE << "\t- Port:\t\t" << CLR_GOLD << this->_port << CLR_RESET << std::endl; + std::cout << CLR_BLUE << "\t- Password:\t" << CLR_GOLD << this->_password << CLR_RESET << std::endl; }