Changeset 195b7b3 in mainline


Ignore:
Timestamp:
2020-06-22T15:25:48Z (4 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c8e1f93
Parents:
5271e4c
Message:

Clean up debug messages and logging

Location:
uspace/srv/hid/display
Files:
11 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hid/display/client.c

    r5271e4c r195b7b3  
    128128 * @param id Window ID
    129129 */
    130 #include <stdio.h>
    131130ds_window_t *ds_client_find_window(ds_client_t *client, ds_wnd_id_t id)
    132131{
     
    134133
    135134        // TODO Make this faster
    136         printf("ds_client_find_window: id=0x%x\n", (unsigned) id);
    137135        wnd = ds_client_first_window(client);
    138136        while (wnd != NULL) {
    139                 printf("ds_client_find_window: wnd=%p wnd->id=0x%x\n", wnd,
    140                     (unsigned) wnd->id);
    141137                if (wnd->id == id)
    142138                        return wnd;
  • uspace/srv/hid/display/ddev.c

    r5271e4c r195b7b3  
    3838#include <errno.h>
    3939#include <io/log.h>
    40 #include <stdio.h>
    4140#include <stdlib.h>
    4241#include "display.h"
     
    10099        rc = loc_service_get_name(svc_id, &name);
    101100        if (rc != EOK) {
    102                 printf("Error resolving name of service %lu.\n",
     101                log_msg(LOG_DEFAULT, LVL_ERROR,
     102                    "Error resolving name of service %lu.\n",
    103103                    (unsigned long) svc_id);
    104104                return rc;
     
    107107        rc = ddev_open(name, &dd);
    108108        if (rc != EOK) {
    109                 printf("Error opening display device '%s'.\n", name);
     109                log_msg(LOG_DEFAULT, LVL_ERROR,
     110                    "Error opening display device '%s'.\n", name);
    110111                free(name);
    111112                return rc;
     
    114115        rc = ddev_get_info(dd, &info);
    115116        if (rc != EOK) {
    116                 printf("Error getting information for display device '%s'.\n",
     117                log_msg(LOG_DEFAULT, LVL_ERROR,
     118                    "Error getting information for display device '%s'.\n",
    117119                    name);
    118120                free(name);
     
    121123        }
    122124
    123         log_msg(LOG_DEFAULT, LVL_NOTE, "Device rectangle for '%s': "
     125        log_msg(LOG_DEFAULT, LVL_DEBUG, "Device rectangle for '%s': "
    124126            "%d,%d,%d,%d\n", name, info.rect.p0.x, info.rect.p0.y,
    125127            info.rect.p1.x, info.rect.p1.y);
     
    127129        rc = ddev_get_gc(dd, &gc);
    128130        if (rc != EOK) {
    129                 printf("Error getting device context for '%s'.\n", name);
     131                log_msg(LOG_DEFAULT, LVL_ERROR,
     132                    "Error getting device context for '%s'.\n", name);
    130133                ddev_close(dd);
    131134                free(name);
  • uspace/srv/hid/display/display.c

    r5271e4c r195b7b3  
    208208 * @param id Window ID
    209209 */
    210 #include <stdio.h>
    211210ds_window_t *ds_display_find_window(ds_display_t *display, ds_wnd_id_t id)
    212211{
     
    214213        ds_window_t *wnd;
    215214
    216         printf("ds_display_find_window: id=0x%x\n", (unsigned) id);
    217 
    218215        client = ds_display_first_client(display);
    219216        while (client != NULL) {
    220                 printf("ds_display_find_window: client=%p\n", client);
    221217                wnd = ds_client_find_window(client, id);
    222                 if (wnd != NULL) {
    223                         printf("ds_display_find_window: found wnd=%p id=0x%x\n",
    224                             wnd, (unsigned) wnd->id);
     218                if (wnd != NULL)
    225219                        return wnd;
    226                 }
     220
    227221                client = ds_display_next_client(client);
    228222        }
    229223
    230         printf("ds_display_find_window: not found\n");
    231224        return NULL;
    232225}
  • uspace/srv/hid/display/dsops.c

    r5271e4c r195b7b3  
    138138        }
    139139
    140         log_msg(LVL_NOTE, LVL_DEBUG, "disp_window_move_req()");
     140        log_msg(LOG_DEFAULT, LVL_DEBUG, "disp_window_move_req()");
    141141        ds_window_move_req(wnd, pos);
    142142        ds_display_unlock(client->display);
     
    157157        }
    158158
    159         log_msg(LVL_NOTE, LVL_DEBUG, "disp_window_move()");
     159        log_msg(LOG_DEFAULT, LVL_DEBUG, "disp_window_move()");
    160160        ds_window_move(wnd, pos);
    161161        ds_display_unlock(client->display);
     
    180180        }
    181181
    182         log_msg(LVL_NOTE, LVL_DEBUG, "disp_window_resize_req()");
     182        log_msg(LOG_DEFAULT, LVL_DEBUG, "disp_window_resize_req()");
    183183        ds_window_resize_req(wnd, rsztype, pos);
    184184        ds_display_unlock(client->display);
     
    201201        }
    202202
    203         log_msg(LOG_DEFAULT, LVL_NOTE, "disp_window_resize()");
     203        log_msg(LOG_DEFAULT, LVL_DEBUG, "disp_window_resize()");
    204204        rc = ds_window_resize(wnd, offs, nbound);
    205205        ds_display_unlock(client->display);
     
    222222        }
    223223
    224         log_msg(LOG_DEFAULT, LVL_NOTE, "disp_window_set_cursor()");
     224        log_msg(LOG_DEFAULT, LVL_DEBUG, "disp_window_set_cursor()");
    225225        rc = ds_window_set_cursor(wnd, cursor);
    226226        ds_display_unlock(client->display);
  • uspace/srv/hid/display/input.c

    r5271e4c r195b7b3  
    3535#include <errno.h>
    3636#include <io/input.h>
     37#include <io/log.h>
    3738#include <loc.h>
    38 #include <stdio.h>
    3939#include <str_error.h>
    4040#include "display.h"
     
    153153        errno_t rc = loc_service_get_id(svc, &dsid, 0);
    154154        if (rc != EOK) {
    155                 printf("%s: Input service %s not found\n", NAME, svc);
     155                log_msg(LOG_DEFAULT, LVL_ERROR, "Input service %s not found\n",
     156                    svc);
    156157                return rc;
    157158        }
     
    159160        sess = loc_service_connect(dsid, INTERFACE_INPUT, 0);
    160161        if (sess == NULL) {
    161                 printf("%s: Unable to connect to input service %s\n", NAME,
    162                     svc);
     162                log_msg(LOG_DEFAULT, LVL_ERROR,
     163                    "Unable to connect to input service %s\n", svc);
    163164                return EIO;
    164165        }
     
    168169        if (rc != EOK) {
    169170                async_hangup(sess);
    170                 printf("%s: Unable to communicate with service %s (%s)\n",
    171                     NAME, svc, str_error(rc));
     171                log_msg(LOG_DEFAULT, LVL_ERROR,
     172                    "Unable to communicate with service %s (%s)\n",
     173                    svc, str_error(rc));
    172174                return rc;
    173175        }
  • uspace/srv/hid/display/main.c

    r5271e4c r195b7b3  
    161161        errno_t rc;
    162162
    163         log_msg(LOG_DEFAULT, LVL_NOTE, "display_client_conn arg1=%zu arg2=%zu arg3=%zu arg4=%zu.",
     163        log_msg(LOG_DEFAULT, LVL_DEBUG, "display_client_conn arg1=%zu arg2=%zu arg3=%zu arg4=%zu.",
    164164            ipc_get_arg1(icall), ipc_get_arg2(icall), ipc_get_arg3(icall),
    165165            ipc_get_arg4(icall));
  • uspace/srv/hid/display/output.c

    r5271e4c r195b7b3  
    3838#include <fibril_synch.h>
    3939#include <io/kbd_event.h>
     40#include <io/log.h>
    4041#include <io/pos_event.h>
    4142#include <loc.h>
    42 #include <stdio.h>
    4343#include <stdlib.h>
    4444#include "ddev.h"
     
    6363            IPC_FLAG_BLOCKING);
    6464        if (rc != EOK) {
    65                 printf("Error looking up category 'display-device'.\n");
     65                log_msg(LOG_DEFAULT, LVL_ERROR,
     66                    "Error looking up category 'display-device'.\n");
    6667                return EIO;
    6768        }
     
    7273        rc = loc_category_get_svcs(ddev_cid, &svcs, &count);
    7374        if (rc != EOK) {
    74                 printf("Error getting list of display devices.\n");
     75                log_msg(LOG_DEFAULT, LVL_ERROR,
     76                    "Error getting list of display devices.\n");
    7577                return EIO;
    7678        }
     
    9092                        rc = ds_ddev_open(output->def_display, svcs[i], &nddev);
    9193                        if (rc != EOK) {
    92                                 printf("Error adding display device.\n");
     94                                log_msg(LOG_DEFAULT, LVL_ERROR,
     95                                    "Error adding display device.\n");
    9396                                continue;
    9497                        }
     
    9699                        list_append(&nddev->loutdevs, &output->ddevs);
    97100
    98                         printf("Added display device '%lu'\n",
     101                        log_msg(LOG_DEFAULT, LVL_NOTE,
     102                            "Added display device '%lu'\n",
    99103                            (unsigned long) svcs[i]);
    100104                }
     
    114118        ds_output_t *output = (ds_output_t *) arg;
    115119
    116         printf("ds_ddev_change_cb\n");
    117120        fibril_mutex_lock(&output->lock);
    118121        (void) ds_output_check_new_devs(output);
     
    151154        rc = loc_register_cat_change_cb(ds_ddev_change_cb, output);
    152155        if (rc != EOK) {
    153                 printf("Failed registering callback for device discovery.\n");
     156                log_msg(LOG_DEFAULT, LVL_ERROR,
     157                    "Failed registering callback for device discovery.\n");
    154158                return rc;
    155159        }
  • uspace/srv/hid/display/test/client.c

    r5271e4c r195b7b3  
    3030#include <errno.h>
    3131#include <pcut/pcut.h>
    32 #include <stdio.h>
    3332#include <str.h>
    3433
     
    5049{
    5150        bool *called_cb = (bool *) arg;
    52         printf("test_ds_ev_pending\n");
    5351        *called_cb = true;
    54 
    5552}
    5653
  • uspace/srv/hid/display/test/display.c

    r5271e4c r195b7b3  
    3030#include <errno.h>
    3131#include <pcut/pcut.h>
    32 #include <stdio.h>
    3332#include <str.h>
    3433
     
    5150{
    5251        bool *called_cb = (bool *) arg;
    53         printf("test_ds_ev_pending\n");
    5452        *called_cb = true;
    5553}
  • uspace/srv/hid/display/test/seat.c

    r5271e4c r195b7b3  
    3030#include <errno.h>
    3131#include <pcut/pcut.h>
    32 #include <stdio.h>
    3332#include <str.h>
    3433
     
    5150{
    5251        bool *called_cb = (bool *) arg;
    53         printf("test_ds_ev_pending\n");
    5452        *called_cb = true;
    5553}
  • uspace/srv/hid/display/window.c

    r5271e4c r195b7b3  
    669669        gfx_coord2_t orig_pos;
    670670
    671         log_msg(LOG_DEFAULT, LVL_NOTE, "ds_window_resize_req (%d, %d, %d)",
     671        log_msg(LOG_DEFAULT, LVL_DEBUG, "ds_window_resize_req (%d, %d, %d)",
    672672            (int) rsztype, (int) pos->x, (int) pos->y);
    673673
Note: See TracChangeset for help on using the changeset viewer.