Skip to content

Commit

Permalink
remove excessive logs
Browse files Browse the repository at this point in the history
  • Loading branch information
nicktrn committed Feb 11, 2025
1 parent 1dfecbf commit 96fbeeb
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
2 changes: 0 additions & 2 deletions apps/kubernetes-provider/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -426,8 +426,6 @@ class KubernetesTaskOperations implements TaskOperations {
(name) => ({ name }) satisfies k8s.V1LocalObjectReference
);

console.log("imagePullSecrets", imagePullSecrets);

return {
restartPolicy: "Never",
automountServiceAccountToken: false,
Expand Down
7 changes: 0 additions & 7 deletions apps/kubernetes-provider/src/labelHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,6 @@ export class CustomLabelHelper {
const labelName = this.getLabelNameFromEnvVarKey(type, key);
const sampleRate = this.getSampleRateFromEnvVarKey(type, key);

console.log({ key, value, sampleRate, labelName });

const label = {
key: labelName,
value: value || "",
Expand All @@ -129,11 +127,6 @@ export class CustomLabelHelper {
customLabels.push(label);
}

console.log({
type,
customLabels,
});

return customLabels;
}

Expand Down

0 comments on commit 96fbeeb

Please sign in to comment.