mirror of
https://github.com/swaywm/sway.git
synced 2026-05-03 06:46:26 -04:00
Use sway_log functions instead of wlr_log
This commit is contained in:
parent
1185a8cc1f
commit
c7c1cf31f7
79 changed files with 377 additions and 372 deletions
|
|
@ -34,7 +34,7 @@ void sway_terminate(int exit_code) {
|
|||
static void daemonize() {
|
||||
int fds[2];
|
||||
if (pipe(fds) != 0) {
|
||||
wlr_log(L_ERROR, "Failed to pipe");
|
||||
sway_log(L_ERROR, "Failed to pipe");
|
||||
exit(1);
|
||||
}
|
||||
if (fork() == 0) {
|
||||
|
|
@ -56,7 +56,7 @@ static void daemonize() {
|
|||
close(fds[1]);
|
||||
uint8_t success;
|
||||
if (read(fds[0], &success, 1) != 1 || !success) {
|
||||
wlr_log(L_ERROR, "Failed to daemonize");
|
||||
sway_log(L_ERROR, "Failed to daemonize");
|
||||
exit(1);
|
||||
}
|
||||
close(fds[0]);
|
||||
|
|
@ -174,7 +174,7 @@ static void handle_xdg_output_logical_position(void *data,
|
|||
|
||||
static void handle_xdg_output_name(void *data, struct zxdg_output_v1 *output,
|
||||
const char *name) {
|
||||
wlr_log(L_DEBUG, "output name is %s", name);
|
||||
sway_log(L_DEBUG, "output name is %s", name);
|
||||
struct swaylock_surface *surface = data;
|
||||
surface->xdg_output = output;
|
||||
surface->output_name = strdup(name);
|
||||
|
|
@ -290,10 +290,10 @@ static void load_image(char *arg, struct swaylock_state *state) {
|
|||
}
|
||||
if (exists) {
|
||||
if (image->output_name) {
|
||||
wlr_log(L_ERROR, "Multiple images defined for output %s",
|
||||
sway_log(L_ERROR, "Multiple images defined for output %s",
|
||||
image->output_name);
|
||||
} else {
|
||||
wlr_log(L_ERROR, "Multiple default images defined");
|
||||
sway_log(L_ERROR, "Multiple default images defined");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -313,7 +313,7 @@ static void load_image(char *arg, struct swaylock_state *state) {
|
|||
}
|
||||
wl_list_insert(&state->images, &image->link);
|
||||
state->args.mode = BACKGROUND_MODE_FILL;
|
||||
wlr_log(L_DEBUG, "Loaded image %s for output %s",
|
||||
sway_log(L_DEBUG, "Loaded image %s for output %s",
|
||||
image->path, image->output_name ? image->output_name : "*");
|
||||
}
|
||||
|
||||
|
|
@ -352,7 +352,7 @@ int main(int argc, char **argv) {
|
|||
};
|
||||
wl_list_init(&state.images);
|
||||
|
||||
wlr_log_init(L_DEBUG, NULL);
|
||||
sway_log_init(L_DEBUG, NULL);
|
||||
|
||||
int c;
|
||||
while (1) {
|
||||
|
|
@ -416,13 +416,13 @@ int main(int argc, char **argv) {
|
|||
wl_display_roundtrip(state.display);
|
||||
assert(state.compositor && state.layer_shell && state.shm);
|
||||
if (!state.input_inhibit_manager) {
|
||||
wlr_log(L_ERROR, "Compositor does not support the input inhibitor "
|
||||
sway_log(L_ERROR, "Compositor does not support the input inhibitor "
|
||||
"protocol, refusing to run insecurely");
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (wl_list_empty(&state.surfaces)) {
|
||||
wlr_log(L_DEBUG, "Exiting - no outputs to show on.");
|
||||
sway_log(L_DEBUG, "Exiting - no outputs to show on.");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
@ -438,7 +438,7 @@ int main(int argc, char **argv) {
|
|||
}
|
||||
wl_display_roundtrip(state.display);
|
||||
} else {
|
||||
wlr_log(L_INFO, "Compositor does not support zxdg output manager, "
|
||||
sway_log(L_INFO, "Compositor does not support zxdg output manager, "
|
||||
"images assigned to named outputs will not work");
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
#include <wlr/util/log.h>
|
||||
#include "log.h"
|
||||
#include <xkbcommon/xkbcommon.h>
|
||||
#include "swaylock/swaylock.h"
|
||||
#include "swaylock/seat.h"
|
||||
|
|
@ -53,15 +53,15 @@ static bool attempt_password(struct swaylock_password *pw) {
|
|||
// TODO: only call pam_start once. keep the same handle the whole time
|
||||
if ((pam_err = pam_start("swaylock", username,
|
||||
&local_conversation, &local_auth_handle)) != PAM_SUCCESS) {
|
||||
wlr_log(L_ERROR, "PAM returned error %d", pam_err);
|
||||
sway_log(L_ERROR, "PAM returned error %d", pam_err);
|
||||
}
|
||||
if ((pam_err = pam_authenticate(local_auth_handle, 0)) != PAM_SUCCESS) {
|
||||
wlr_log(L_ERROR, "pam_authenticate failed");
|
||||
sway_log(L_ERROR, "pam_authenticate failed");
|
||||
goto fail;
|
||||
}
|
||||
// TODO: only call pam_end once we succeed at authing. refresh tokens beforehand
|
||||
if ((pam_err = pam_end(local_auth_handle, pam_err)) != PAM_SUCCESS) {
|
||||
wlr_log(L_ERROR, "pam_end failed");
|
||||
sway_log(L_ERROR, "pam_end failed");
|
||||
goto fail;
|
||||
}
|
||||
clear_password_buffer(pw);
|
||||
|
|
|
|||
|
|
@ -2,8 +2,8 @@
|
|||
#include <stdlib.h>
|
||||
#include <sys/mman.h>
|
||||
#include <unistd.h>
|
||||
#include <wlr/util/log.h>
|
||||
#include <xkbcommon/xkbcommon.h>
|
||||
#include "log.h"
|
||||
#include "swaylock/swaylock.h"
|
||||
#include "swaylock/seat.h"
|
||||
|
||||
|
|
@ -34,13 +34,13 @@ static void keyboard_keymap(void *data, struct wl_keyboard *wl_keyboard,
|
|||
struct swaylock_state *state = data;
|
||||
if (format != WL_KEYBOARD_KEYMAP_FORMAT_XKB_V1) {
|
||||
close(fd);
|
||||
wlr_log(L_ERROR, "Unknown keymap format %d, aborting", format);
|
||||
sway_log(L_ERROR, "Unknown keymap format %d, aborting", format);
|
||||
exit(1);
|
||||
}
|
||||
char *map_shm = mmap(NULL, size, PROT_READ, MAP_SHARED, fd, 0);
|
||||
if (map_shm == MAP_FAILED) {
|
||||
close(fd);
|
||||
wlr_log(L_ERROR, "Unable to initialize keymap shm, aborting");
|
||||
sway_log(L_ERROR, "Unable to initialize keymap shm, aborting");
|
||||
exit(1);
|
||||
}
|
||||
struct xkb_keymap *keymap = xkb_keymap_new_from_string(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue