Change in libosmocore[master]: vty/logging: ensure consistent '%' prefix for warnings

2021-04-07 Thread laforge
laforge has submitted this change. ( 
https://gerrit.osmocom.org/c/libosmocore/+/23629 )

Change subject: vty/logging: ensure consistent '%' prefix for warnings
..

vty/logging: ensure consistent '%' prefix for warnings

Change-Id: I2b2bab61e46668c3b4b0ccad88d02b6d00a83544
---
M src/vty/logging_vty.c
M tests/logging/logging_vty_test.vty
2 files changed, 7 insertions(+), 7 deletions(-)

Approvals:
  laforge: Looks good to me, approved
  Jenkins Builder: Verified



diff --git a/src/vty/logging_vty.c b/src/vty/logging_vty.c
index cc250c0..5f31b39 100644
--- a/src/vty/logging_vty.c
+++ b/src/vty/logging_vty.c
@@ -131,7 +131,7 @@

conn = (struct telnet_connection *) vty->priv;
if (conn->dbg) {
-   vty_out(vty, "Logging already enabled.%s", VTY_NEWLINE);
+   vty_out(vty, "%% Logging already enabled.%s", VTY_NEWLINE);
return CMD_WARNING;
}

@@ -158,7 +158,7 @@

conn = (struct telnet_connection *) vty->priv;
if (!conn->dbg)
-   vty_out(vty, "Logging was not enabled.%s", VTY_NEWLINE);
+   vty_out(vty, "%% Logging was not enabled.%s", VTY_NEWLINE);

return conn->dbg;
 }
@@ -372,12 +372,12 @@
int level = log_parse_level(argv[1]);

if (level < 0) {
-   vty_out(vty, "Invalid level '%s'%s", argv[1], VTY_NEWLINE);
+   vty_out(vty, "%% Invalid level '%s'%s", argv[1], VTY_NEWLINE);
return CMD_WARNING;
}

if (category < 0) {
-   vty_out(vty, "Invalid category '%s'%s", argv[0], VTY_NEWLINE);
+   vty_out(vty, "%% Invalid category '%s'%s", argv[0], 
VTY_NEWLINE);
return CMD_WARNING;
}

@@ -595,7 +595,7 @@
char **dptr = vty->index_sub;

if (!dptr) {
-   vty_out(vty, "vty->index_sub == NULL%s", VTY_NEWLINE);
+   vty_out(vty, "%% vty->index_sub == NULL%s", VTY_NEWLINE);
return CMD_WARNING;
}

@@ -616,7 +616,7 @@
char **dptr = vty->index_sub;

if (!dptr) {
-   vty_out(vty, "vty->index_sub == NULL%s", VTY_NEWLINE);
+   vty_out(vty, "%% vty->index_sub == NULL%s", VTY_NEWLINE);
return CMD_WARNING;
}

diff --git a/tests/logging/logging_vty_test.vty 
b/tests/logging/logging_vty_test.vty
index 91c2a48..30e73ab 100644
--- a/tests/logging/logging_vty_test.vty
+++ b/tests/logging/logging_vty_test.vty
@@ -29,7 +29,7 @@
 logging_vty_test(config)# exit

 logging_vty_test# logging level force-all notice
-Logging was not enabled.
+% Logging was not enabled.

 logging_vty_test# logging enable
 logging_vty_test# logging filter all 1

--
To view, visit https://gerrit.osmocom.org/c/libosmocore/+/23629
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Change-Id: I2b2bab61e46668c3b4b0ccad88d02b6d00a83544
Gerrit-Change-Number: 23629
Gerrit-PatchSet: 3
Gerrit-Owner: fixeria 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge 
Gerrit-MessageType: merged


Change in libosmocore[master]: vty/logging: ensure consistent '%' prefix for warnings

2021-04-07 Thread laforge
laforge has posted comments on this change. ( 
https://gerrit.osmocom.org/c/libosmocore/+/23629 )

Change subject: vty/logging: ensure consistent '%' prefix for warnings
..


Patch Set 2: Code-Review+2


--
To view, visit https://gerrit.osmocom.org/c/libosmocore/+/23629
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Change-Id: I2b2bab61e46668c3b4b0ccad88d02b6d00a83544
Gerrit-Change-Number: 23629
Gerrit-PatchSet: 2
Gerrit-Owner: fixeria 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge 
Gerrit-Comment-Date: Wed, 07 Apr 2021 16:32:11 +
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment


Change in libosmocore[master]: vty/logging: ensure consistent '%' prefix for warnings

2021-04-04 Thread fixeria
Hello Jenkins Builder,

I'd like you to reexamine a change. Please visit

https://gerrit.osmocom.org/c/libosmocore/+/23629

to look at the new patch set (#2).

Change subject: vty/logging: ensure consistent '%' prefix for warnings
..

vty/logging: ensure consistent '%' prefix for warnings

Change-Id: I2b2bab61e46668c3b4b0ccad88d02b6d00a83544
---
M src/vty/logging_vty.c
M tests/logging/logging_vty_test.vty
2 files changed, 7 insertions(+), 7 deletions(-)


  git pull ssh://gerrit.osmocom.org:29418/libosmocore refs/changes/29/23629/2
--
To view, visit https://gerrit.osmocom.org/c/libosmocore/+/23629
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Change-Id: I2b2bab61e46668c3b4b0ccad88d02b6d00a83544
Gerrit-Change-Number: 23629
Gerrit-PatchSet: 2
Gerrit-Owner: fixeria 
Gerrit-Reviewer: Jenkins Builder
Gerrit-MessageType: newpatchset


Change in libosmocore[master]: vty/logging: ensure consistent '%' prefix for warnings

2021-04-04 Thread fixeria
fixeria has uploaded this change for review. ( 
https://gerrit.osmocom.org/c/libosmocore/+/23629 )


Change subject: vty/logging: ensure consistent '%' prefix for warnings
..

vty/logging: ensure consistent '%' prefix for warnings

Change-Id: I2b2bab61e46668c3b4b0ccad88d02b6d00a83544
---
M src/vty/logging_vty.c
1 file changed, 6 insertions(+), 6 deletions(-)



  git pull ssh://gerrit.osmocom.org:29418/libosmocore refs/changes/29/23629/1

diff --git a/src/vty/logging_vty.c b/src/vty/logging_vty.c
index cc250c0..5f31b39 100644
--- a/src/vty/logging_vty.c
+++ b/src/vty/logging_vty.c
@@ -131,7 +131,7 @@

conn = (struct telnet_connection *) vty->priv;
if (conn->dbg) {
-   vty_out(vty, "Logging already enabled.%s", VTY_NEWLINE);
+   vty_out(vty, "%% Logging already enabled.%s", VTY_NEWLINE);
return CMD_WARNING;
}

@@ -158,7 +158,7 @@

conn = (struct telnet_connection *) vty->priv;
if (!conn->dbg)
-   vty_out(vty, "Logging was not enabled.%s", VTY_NEWLINE);
+   vty_out(vty, "%% Logging was not enabled.%s", VTY_NEWLINE);

return conn->dbg;
 }
@@ -372,12 +372,12 @@
int level = log_parse_level(argv[1]);

if (level < 0) {
-   vty_out(vty, "Invalid level '%s'%s", argv[1], VTY_NEWLINE);
+   vty_out(vty, "%% Invalid level '%s'%s", argv[1], VTY_NEWLINE);
return CMD_WARNING;
}

if (category < 0) {
-   vty_out(vty, "Invalid category '%s'%s", argv[0], VTY_NEWLINE);
+   vty_out(vty, "%% Invalid category '%s'%s", argv[0], 
VTY_NEWLINE);
return CMD_WARNING;
}

@@ -595,7 +595,7 @@
char **dptr = vty->index_sub;

if (!dptr) {
-   vty_out(vty, "vty->index_sub == NULL%s", VTY_NEWLINE);
+   vty_out(vty, "%% vty->index_sub == NULL%s", VTY_NEWLINE);
return CMD_WARNING;
}

@@ -616,7 +616,7 @@
char **dptr = vty->index_sub;

if (!dptr) {
-   vty_out(vty, "vty->index_sub == NULL%s", VTY_NEWLINE);
+   vty_out(vty, "%% vty->index_sub == NULL%s", VTY_NEWLINE);
return CMD_WARNING;
}


--
To view, visit https://gerrit.osmocom.org/c/libosmocore/+/23629
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Change-Id: I2b2bab61e46668c3b4b0ccad88d02b6d00a83544
Gerrit-Change-Number: 23629
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria 
Gerrit-MessageType: newchange