Tutorial: application.setAppLogUsername

application.setAppLogUsername

Sets a username that correlates the application's log with the application log manager.

Example

var application = fin.desktop.Application.getCurrent();

application.setAppLogUsername('username', () => {
    console.log('Success');
}, () => {
    console.log('Error')
});