Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: nopayloadclient service #1428

Open
wants to merge 10 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
fix: include full path to Log_service.h
wdconinc committed May 23, 2024
commit a1e95707f9a131641c030865055e3e45a2f2781e
9 changes: 4 additions & 5 deletions src/services/payload/payload.cc
Original file line number Diff line number Diff line change
@@ -6,12 +6,11 @@
#include <JANA/JApplication.h>
#include <memory>

#include "Log_service.h"

#include "services/log/Log_service.h"

extern "C" {
void InitPlugin(JApplication *app) {
InitJANAPlugin(app);
app->ProvideService(std::make_shared<Log_service>(app) );
void InitPlugin(JApplication* app) {
InitJANAPlugin(app);
app->ProvideService(std::make_shared<Log_service>(app));
}
}