Skip to content

Commit

Permalink
chore: removed debugging logs
Browse files Browse the repository at this point in the history
  • Loading branch information
PritishBudhiraja committed Dec 11, 2024
1 parent 93ba53a commit 131dfb0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
2 changes: 0 additions & 2 deletions src/Payments/CardPayment.res
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,6 @@ let make = (
~isGuestCustomer,
)

Console.log2(">>>> Logs Debug >>>>", (GlobalVars.enableLogging, GlobalVars.logEndpoint))

let submitCallback = React.useCallback((ev: Window.event) => {
let json = ev.data->safeParse
let confirm = json->getDictFromJson->ConfirmType.itemToObjMapper
Expand Down
4 changes: 1 addition & 3 deletions webpack.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@ const getSdkUrl = (env, customUrl) => {
return urls[env] || urls.local;
};

console.log("env", process.env);

const sdkUrl = getSdkUrl(sdkEnv, envSdkUrl);
const getEnvironmentDomain = (prodDomain, integDomain, defaultDomain) => {
switch (sdkEnv) {
Expand Down Expand Up @@ -69,6 +67,7 @@ module.exports = (publicPath = "auto") => {
app: "./index.js",
HyperLoader: "./src/hyper-loader/HyperLoader.bs.js",
};

let definePluginValues = {
repoName: JSON.stringify(repoName),
repoVersion: JSON.stringify(repoVersion),
Expand All @@ -83,7 +82,6 @@ module.exports = (publicPath = "auto") => {
loggingLevel: JSON.stringify(loggingLevel),
maxLogsPushedPerEventName: JSON.stringify(maxLogsPushedPerEventName),
};
console.log("definePluginValues", definePluginValues);

const plugins = [
new MiniCssExtractPlugin(),
Expand Down

0 comments on commit 131dfb0

Please sign in to comment.