Skip to content

Commit

Permalink
Remove debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
jtpio authored Jun 26, 2024
1 parent 0cd75a9 commit 01439cf
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/xkernel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,6 @@ namespace xeus

void xkernel::init(server_builder sbuilder, debugger_builder dbuilder)
{
std::clog << "xkernel::init" << std::endl;
m_kernel_id = new_xguid();
m_session_id = new_xguid();

Expand All @@ -137,10 +136,8 @@ namespace xeus
p_server = sbuilder(*p_context, m_config, m_error_handler);
p_server->update_config(m_config);

std::clog << "Before instantiating debugger" << std::endl;
p_debugger = dbuilder(*p_context, m_config, m_user_name, m_session_id, m_debugger_config);

std::clog << "Debugger instantiated" << std::endl;
p_core = std::make_unique<xkernel_core>(m_kernel_id,
m_user_name,
m_session_id,
Expand Down

0 comments on commit 01439cf

Please sign in to comment.