remove log

This commit is contained in:
arc-alex
2023-11-05 13:06:17 +01:00
parent 1e930851ca
commit 858aee83ac
@@ -287,7 +287,6 @@ export const getOSC = async (req, res) => {
// Returns - // Returns -
export const getHTTP = async (req, res) => { export const getHTTP = async (req, res) => {
const http = DataProvider.getHttp(); const http = DataProvider.getHttp();
console.log('get http', http)
res.status(200).send(http); res.status(200).send(http);
}; };
@@ -313,7 +312,6 @@ export const postOscSubscriptions = async (req, res) => {
}; };
export const postHttpSubscriptions = async (req, res) => { export const postHttpSubscriptions = async (req, res) => {
console.log('http post sub')
if (failEmptyObjects(req.body, res)) { if (failEmptyObjects(req.body, res)) {
return; return;
} }