Skip to content

Commit

Permalink
Merge pull request #405 from jtpio/debug-logs
Browse files Browse the repository at this point in the history
Remove debug logs
  • Loading branch information
JohanMabille authored Jun 26, 2024
2 parents 9b5d6af + 01439cf commit f7d24c4
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 f7d24c4

Please sign in to comment.