remove(console.log): refs #6367 remove consoleLog
gitea/salix/pipeline/head Build queued... Details

This commit is contained in:
Pablo Natek 2023-12-28 09:17:32 +01:00
parent 97b6cac486
commit 6dff7d5115
3 changed files with 0 additions and 5 deletions

View File

@ -49,7 +49,6 @@ module.exports = Self => {
}]
}, myOptions);
console.log('notificationQueue: ', notificationQueue);
const statusSent = 'sent';
for (const queue of notificationQueue) {

View File

@ -95,8 +95,6 @@ class Component {
build() {
const fullPath = path.resolve(__dirname, this.path);
console.log('this.path: ', this.path);
console.log('fullPath: ', fullPath);
if (!fs.existsSync(fullPath))
throw new Error(`Template "${this.name}" not found`);

View File

@ -78,8 +78,6 @@ class Email extends Component {
for (let attachment of options.attachments)
attachments.push(attachment);
}
console.log(typeof this.args);
console.log(this.args?.subject);
const localeSubject = await this.getSubject();
const mailOptions = {
to: this.args.recipient,