Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
07b13e24
Commit
07b13e24
authored
Apr 23, 2016
by
bergquist
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
style(cli): add some color to error messages
parent
0855f514
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
pkg/cmd/grafana-cli/commands/commands.go
+2
-1
pkg/cmd/grafana-cli/commands/install_command.go
+1
-1
No files found.
pkg/cmd/grafana-cli/commands/commands.go
View file @
07b13e24
...
@@ -4,6 +4,7 @@ import (
...
@@ -4,6 +4,7 @@ import (
"os"
"os"
"github.com/codegangsta/cli"
"github.com/codegangsta/cli"
"github.com/fatih/color"
"github.com/grafana/grafana/pkg/cmd/grafana-cli/log"
"github.com/grafana/grafana/pkg/cmd/grafana-cli/log"
)
)
...
@@ -12,7 +13,7 @@ func runCommand(command func(commandLine CommandLine) error) func(context *cli.C
...
@@ -12,7 +13,7 @@ func runCommand(command func(commandLine CommandLine) error) func(context *cli.C
cmd
:=
&
contextCommandLine
{
context
}
cmd
:=
&
contextCommandLine
{
context
}
if
err
:=
command
(
cmd
);
err
!=
nil
{
if
err
:=
command
(
cmd
);
err
!=
nil
{
log
.
Error
(
"
\n
Error: "
)
log
.
Error
f
(
"
\n
%s: "
,
color
.
RedString
(
"Error"
)
)
log
.
Errorf
(
"%s
\n\n
"
,
err
)
log
.
Errorf
(
"%s
\n\n
"
,
err
)
cmd
.
ShowHelp
()
cmd
.
ShowHelp
()
...
...
pkg/cmd/grafana-cli/commands/install_command.go
View file @
07b13e24
...
@@ -132,7 +132,7 @@ func downloadFile(pluginName, filePath, url string) (err error) {
...
@@ -132,7 +132,7 @@ func downloadFile(pluginName, filePath, url string) (err error) {
}
else
{
}
else
{
failure
:=
fmt
.
Sprintf
(
"%v"
,
r
)
failure
:=
fmt
.
Sprintf
(
"%v"
,
r
)
if
failure
==
"runtime error: makeslice: len out of range"
{
if
failure
==
"runtime error: makeslice: len out of range"
{
err
=
fmt
.
Errorf
(
"
Failed to extract zipped HTTP respons
e. Please try again.
\n
"
)
err
=
fmt
.
Errorf
(
"
Corrupt http response from sourc
e. Please try again.
\n
"
)
}
else
{
}
else
{
panic
(
r
)
panic
(
r
)
}
}
...
...
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