Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
X
ximper-shell-notification-center
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ximper Linux
ximper-shell-notification-center
Commits
915bc8e9
Commit
915bc8e9
authored
Oct 11, 2025
by
Erik Reider
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use more sensible levels of logging methods
parent
84f38b67
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
client.vala
src/client.vala
+1
-1
baseWidget.vala
src/controlCenter/widgets/baseWidget.vala
+1
-1
functions.vala
src/functions.vala
+1
-1
notification.vala
src/notification/notification.vala
+1
-1
No files found.
src/client.vala
View file @
915bc8e9
...
...
@@ -311,7 +311,7 @@ public int command_line (ref string[] args, bool skip_wait) {
stderr
.
printf
(
"Could not find monitor: \"%s\"!"
,
args
[
1
]);
break
;
default
:
print
(
"Unknown command: \"%s\"\n"
,
args
[
0
]);
print
err
(
"Unknown command: \"%s\"\n"
,
args
[
0
]);
print_help
(
args
);
break
;
}
...
...
src/controlCenter/widgets/baseWidget.vala
View file @
915bc8e9
...
...
@@ -47,7 +47,7 @@ namespace SwayNotificationCenter.Widgets {
Json
.
Object
?
props
=
null
;
bool
result
=
config
.
lookup_extended
(
key
,
out
orig_key
,
out
props
);
if
(!
result
||
orig_key
==
null
||
props
==
null
)
{
critical
(
"%s: Config not found! Using default config...\n"
,
key
);
warning
(
"%s: Config not found! Using default config...\n"
,
key
);
return
null
;
}
return
props
;
...
...
src/functions.vala
View file @
915bc8e9
...
...
@@ -174,7 +174,7 @@ namespace SwayNotificationCenter {
if
(
File
.
new_for_path
(
custom_path
).
query_exists
())
{
paths
+=
custom_path
;
}
else
{
critical
(
"Custom config file \"%s\" not found, skipping..."
,
custom_path
);
warning
(
"Custom config file \"%s\" not found, skipping..."
,
custom_path
);
}
}
paths
+=
Path
.
build_path
(
Path
.
DIR_SEPARATOR
.
to_string
(),
...
...
src/notification/notification.vala
View file @
915bc8e9
...
...
@@ -509,7 +509,7 @@ namespace SwayNotificationCenter {
try
{
swaync_daemon
.
set_visibility
(
false
);
}
catch
(
Error
e
)
{
print
(
"Error: %s\n"
,
e
.
message
);
critical
(
"Error: %s\n"
,
e
.
message
);
}
}
}
...
...
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