Howto: Outlook 2016 for Mac - Debugging/View Console Logs in Outlook Add-in
We develop an Outlook app (now called add-in) using html5/js originally for OWA but now it is targeted to all Office Supported Platforms.
And indeed, it seems to work on all platforms (ios, safari on mac, windows browsers and outlook) except for Outlook 2016 for Mac.
When running inside Outlook 2016 for Mac it behaves very strangely. Not loading half the times, and when loading, it does not work properly.
We find it very hard to find the problem. We did not find a way to debug our scripts or even see our console logs.
Do you have any flags/procedure/tools that we can use, so that we can see what's going on with our add-in in this platform?
outlook outlook-addin office365-apps officedev office-2016
add a comment |
We develop an Outlook app (now called add-in) using html5/js originally for OWA but now it is targeted to all Office Supported Platforms.
And indeed, it seems to work on all platforms (ios, safari on mac, windows browsers and outlook) except for Outlook 2016 for Mac.
When running inside Outlook 2016 for Mac it behaves very strangely. Not loading half the times, and when loading, it does not work properly.
We find it very hard to find the problem. We did not find a way to debug our scripts or even see our console logs.
Do you have any flags/procedure/tools that we can use, so that we can see what's going on with our add-in in this platform?
outlook outlook-addin office365-apps officedev office-2016
add a comment |
We develop an Outlook app (now called add-in) using html5/js originally for OWA but now it is targeted to all Office Supported Platforms.
And indeed, it seems to work on all platforms (ios, safari on mac, windows browsers and outlook) except for Outlook 2016 for Mac.
When running inside Outlook 2016 for Mac it behaves very strangely. Not loading half the times, and when loading, it does not work properly.
We find it very hard to find the problem. We did not find a way to debug our scripts or even see our console logs.
Do you have any flags/procedure/tools that we can use, so that we can see what's going on with our add-in in this platform?
outlook outlook-addin office365-apps officedev office-2016
We develop an Outlook app (now called add-in) using html5/js originally for OWA but now it is targeted to all Office Supported Platforms.
And indeed, it seems to work on all platforms (ios, safari on mac, windows browsers and outlook) except for Outlook 2016 for Mac.
When running inside Outlook 2016 for Mac it behaves very strangely. Not loading half the times, and when loading, it does not work properly.
We find it very hard to find the problem. We did not find a way to debug our scripts or even see our console logs.
Do you have any flags/procedure/tools that we can use, so that we can see what's going on with our add-in in this platform?
outlook outlook-addin office365-apps officedev office-2016
outlook outlook-addin office365-apps officedev office-2016
edited Dec 15 '15 at 20:20
Danikenan
asked Dec 15 '15 at 19:44
DanikenanDanikenan
11716
11716
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
Take a look at this article:
https://msdn.microsoft.com/EN-US/library/office/dn818897.aspx
Also review all API objects, methods and properties you are accessing against the API documentation; note the Support Details section at the bottom of the member's page to confirm its availability for Outlook for Mac.
To debug it against Outlook for Mac, you may need to use the Yeoman tool:
http://dev.office.com/blogs/creating-office-add-ins-with-any-editor-introducing-yo-office
add a comment |
You can use Vorlon.js to be able to debug your add'in.
You should definitively take a look at VorlonJS here :
http://vorlonjs.io/
In a nutshell, VorlonJS is an open source, extensible, platform-agnostic tool for remotely debugging and testing your JavaScript. Powered by node.js and socket.io.
You launch your add'in in "whatever you want" and then you can debug it in VorlonJS
add a comment |
- open your add-in on outlook.
- go to and open one of:
32-Bit – C:WindowsSystem32F12F12Chooser.exe
64-Bit – C:WindowsSysWOW64F12F12Chooser.exe
and there is your debugger.
visit here for more info.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f34298022%2fhowto-outlook-2016-for-mac-debugging-view-console-logs-in-outlook-add-in%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
Take a look at this article:
https://msdn.microsoft.com/EN-US/library/office/dn818897.aspx
Also review all API objects, methods and properties you are accessing against the API documentation; note the Support Details section at the bottom of the member's page to confirm its availability for Outlook for Mac.
To debug it against Outlook for Mac, you may need to use the Yeoman tool:
http://dev.office.com/blogs/creating-office-add-ins-with-any-editor-introducing-yo-office
add a comment |
Take a look at this article:
https://msdn.microsoft.com/EN-US/library/office/dn818897.aspx
Also review all API objects, methods and properties you are accessing against the API documentation; note the Support Details section at the bottom of the member's page to confirm its availability for Outlook for Mac.
To debug it against Outlook for Mac, you may need to use the Yeoman tool:
http://dev.office.com/blogs/creating-office-add-ins-with-any-editor-introducing-yo-office
add a comment |
Take a look at this article:
https://msdn.microsoft.com/EN-US/library/office/dn818897.aspx
Also review all API objects, methods and properties you are accessing against the API documentation; note the Support Details section at the bottom of the member's page to confirm its availability for Outlook for Mac.
To debug it against Outlook for Mac, you may need to use the Yeoman tool:
http://dev.office.com/blogs/creating-office-add-ins-with-any-editor-introducing-yo-office
Take a look at this article:
https://msdn.microsoft.com/EN-US/library/office/dn818897.aspx
Also review all API objects, methods and properties you are accessing against the API documentation; note the Support Details section at the bottom of the member's page to confirm its availability for Outlook for Mac.
To debug it against Outlook for Mac, you may need to use the Yeoman tool:
http://dev.office.com/blogs/creating-office-add-ins-with-any-editor-introducing-yo-office
answered Dec 15 '15 at 21:16
Eric LegaultEric Legault
4,44921321
4,44921321
add a comment |
add a comment |
You can use Vorlon.js to be able to debug your add'in.
You should definitively take a look at VorlonJS here :
http://vorlonjs.io/
In a nutshell, VorlonJS is an open source, extensible, platform-agnostic tool for remotely debugging and testing your JavaScript. Powered by node.js and socket.io.
You launch your add'in in "whatever you want" and then you can debug it in VorlonJS
add a comment |
You can use Vorlon.js to be able to debug your add'in.
You should definitively take a look at VorlonJS here :
http://vorlonjs.io/
In a nutshell, VorlonJS is an open source, extensible, platform-agnostic tool for remotely debugging and testing your JavaScript. Powered by node.js and socket.io.
You launch your add'in in "whatever you want" and then you can debug it in VorlonJS
add a comment |
You can use Vorlon.js to be able to debug your add'in.
You should definitively take a look at VorlonJS here :
http://vorlonjs.io/
In a nutshell, VorlonJS is an open source, extensible, platform-agnostic tool for remotely debugging and testing your JavaScript. Powered by node.js and socket.io.
You launch your add'in in "whatever you want" and then you can debug it in VorlonJS
You can use Vorlon.js to be able to debug your add'in.
You should definitively take a look at VorlonJS here :
http://vorlonjs.io/
In a nutshell, VorlonJS is an open source, extensible, platform-agnostic tool for remotely debugging and testing your JavaScript. Powered by node.js and socket.io.
You launch your add'in in "whatever you want" and then you can debug it in VorlonJS
edited Dec 24 '15 at 23:44
Josh Crozier
154k35273223
154k35273223
answered Dec 18 '15 at 12:07
Sébastien PertusSébastien Pertus
38019
38019
add a comment |
add a comment |
- open your add-in on outlook.
- go to and open one of:
32-Bit – C:WindowsSystem32F12F12Chooser.exe
64-Bit – C:WindowsSysWOW64F12F12Chooser.exe
and there is your debugger.
visit here for more info.
add a comment |
- open your add-in on outlook.
- go to and open one of:
32-Bit – C:WindowsSystem32F12F12Chooser.exe
64-Bit – C:WindowsSysWOW64F12F12Chooser.exe
and there is your debugger.
visit here for more info.
add a comment |
- open your add-in on outlook.
- go to and open one of:
32-Bit – C:WindowsSystem32F12F12Chooser.exe
64-Bit – C:WindowsSysWOW64F12F12Chooser.exe
and there is your debugger.
visit here for more info.
- open your add-in on outlook.
- go to and open one of:
32-Bit – C:WindowsSystem32F12F12Chooser.exe
64-Bit – C:WindowsSysWOW64F12F12Chooser.exe
and there is your debugger.
visit here for more info.
edited Nov 13 '18 at 13:36
answered Nov 4 '18 at 9:40
Alone BashanAlone Bashan
165
165
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f34298022%2fhowto-outlook-2016-for-mac-debugging-view-console-logs-in-outlook-add-in%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown