Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Michael Iseard
Kudos-Donations
Commits
65e59003
Commit
65e59003
authored
Oct 20, 2021
by
Michael Iseard
Browse files
Fix logging issues due to database field length being too small
parent
393c2a5e
Changes
2
Hide whitespace changes
Inline
Side-by-side
app/Service/ActivatorService.php
View file @
65e59003
...
...
@@ -284,8 +284,8 @@ class ActivatorService {
id MEDIUMINT(9) NOT NULL AUTO_INCREMENT,
date DATETIME DEFAULT '0000-00-00 00:00:00' NOT NULL,
level VARCHAR(255) NOT NULL,
message
VARCHAR(255)
NOT NULL,
context
VARCHAR(255)
,
message
TEXT
NOT NULL,
context
TEXT
,
PRIMARY KEY (id)
)
$charset_collate
"
;
...
...
app/Service/Vendor/MollieVendor.php
View file @
65e59003
...
...
@@ -316,15 +316,11 @@ class MollieVendor implements VendorInterface {
public
function
create_payment
(
array
$payment_array
):
?Payment
{
try
{
return
$this
->
api_client
->
payments
->
create
(
$payment_array
);
}
catch
(
ApiException
$e
)
{
$this
->
logger
->
critical
(
$e
->
getMessage
(),
[
'payment'
=>
$payment_array
]
);
$this
->
logger
->
critical
(
$e
->
getMessage
()
);
return
null
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment