~ubuntu-branches/ubuntu/precise/boinc/precise

« back to all changes in this revision

Viewing changes to client/app_graphics.cpp

Tags: 6.12.8+dfsg-1
* New upstream release.
* Simplified debian/rules

Show diffs side-by-side

added added

removed removed

Lines of Context:
73
73
    }
74
74
 
75
75
    if (log_flags.scrsave_debug) {
76
 
        msg_printf(0, MSG_INFO,
77
 
            "[scrsave_debug] ACTIVE_TASK::request_graphics_mode(): requesting graphics mode %s for %s",
 
76
        msg_printf(wup->project, MSG_INFO,
 
77
            "[scrsave] ACTIVE_TASK::request_graphics_mode(): requesting graphics mode %s for %s",
78
78
            xml_graphics_modes[m.mode], result->name
79
79
        );
80
80
    }
102
102
    if (app_client_shm.shm->graphics_reply.get_msg(buf)) {
103
103
        app_client_shm.decode_graphics_msg(buf, gm);
104
104
        if (log_flags.scrsave_debug) {
105
 
            msg_printf(0, MSG_INFO,
106
 
                "[scrsave_debug] ACTIVE_TASK::check_graphics_mode_ack(): got graphics ack %s for %s, previous mode %s",
 
105
            msg_printf(wup->project, MSG_INFO,
 
106
                "[scrsave] ACTIVE_TASK::check_graphics_mode_ack(): got graphics ack %s for %s, previous mode %s",
107
107
                buf, result->name, xml_graphics_modes[graphics_mode_acked]
108
108
            );
109
109
        }
139
139
    return true;
140
140
}
141
141
 
142
 
const char *BOINC_RCSID_71e9cd9f4d = "$Id: app_graphics.cpp 16069 2008-09-26 18:20:24Z davea $";