Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
twilio
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
twilio
Merge requests
!23
Issue
#3371949
: Log exceptions
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Issue
#3371949
: Log exceptions
issue/twilio-3371949:8.x-3.x
into
8.x-3.x
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Malcolm Young
requested to merge
issue/twilio-3371949:8.x-3.x
into
8.x-3.x
1 year ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
8.x-3.x
version 1
3ee9d9b1
1 year ago
8.x-3.x (base)
and
latest version
latest version
ff0530cc
1 commit,
1 year ago
version 1
3ee9d9b1
1 commit,
1 year ago
1 file
+
1
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/Form/TwilioAdminTestForm.php
+
1
−
0
Options
@@ -105,6 +105,7 @@ class TwilioAdminTestForm extends FormBase {
$this
->
messenger
()
->
addStatus
(
$this
->
t
(
'Attempted to send SMS message. Check your receiving device.'
));
}
catch
(
\Exception
$e
)
{
$this
->
logger
(
'twilio'
)
->
error
(
$e
->
getMessage
());
$this
->
messenger
()
->
addError
(
$this
->
t
(
'An error occurred while attempting to send the SMS message. Please try again later.'
));
}
}
Loading