Removed console.log

This commit is contained in:
Pavel Laptev 2024-03-13 23:59:20 +01:00 committed by GitButler
parent 8611597eaa
commit f2856ea899

View File

@ -50,7 +50,6 @@
// Split the commit message into title and description // Split the commit message into title and description
// get the first line as title and the rest as description // get the first line as title and the rest as description
const [summary, description] = commitMessage.trim().split(/\n+(.*)/s); const [summary, description] = commitMessage.trim().split(/\n+(.*)/s);
console.log('summary and description', summary, description);
return { return {
summary: summary || '', summary: summary || '',
description: description || '' description: description || ''